Trait ndarray_linalg::eigh::Eigh [] [src]

pub trait Eigh {
    type EigVal;
    type EigVec;
    fn eigh(&self, _: UPLO) -> Result<(Self::EigVal, Self::EigVec)>;
}

Eigenvalue decomposition of Hermite matrix

Associated Types

Required Methods

Implementors