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