pub trait Eigh {
    type EigVal;
    type EigVec;

    fn eigh(&self) -> Result<(Self::EigVal, Self::EigVec)>;
}
Expand description

Eigendecomposition of symmetric matrices

Required Associated Types

Required Methods

Calculate eigenvalues and eigenvectors of symmetric matrices

Implementations on Foreign Types

Implementors