Skip to main content

Eigh

Trait Eigh 

Source
pub trait Eigh {
    type Elem;
    type Real;

    // Required method
    fn eigh(
        &self,
        uplo: UPLO,
    ) -> Result<(Array1<Self::Real>, Array2<Self::Elem>), LapackError>;
}
Expand description

Hermitian/symmetric eigenvalue decomposition trait

Required Associated Types§

Required Methods§

Source

fn eigh( &self, uplo: UPLO, ) -> Result<(Array1<Self::Real>, Array2<Self::Elem>), LapackError>

Implementors§