pub trait EigValsh {
    type EigVal;

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

Eigenvalues of symmetric matrices

Required Associated Types

Required Methods

Calculate eigenvalues of symmetric matrices without eigenvectors

Implementations on Foreign Types

Implementors