SchurResult

Type Alias SchurResult 

Source
pub type SchurResult<T> = Result<SchurDecomp<T>, SchurError>;
Expand description

Result type for Schur decomposition, returning either a SchurDecomp or a SchurError

Aliased Type§

pub enum SchurResult<T> {
    Ok(SchurDecomp<T>),
    Err(SchurError),
}

Variants§

§1.0.0

Ok(SchurDecomp<T>)

Contains the success value

§1.0.0

Err(SchurError)

Contains the error value