pub trait EighInto: Sized {
    type EigVal;
    type EigVec;

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

Eigendecomposition of symmetric matrices

Required Associated Types

Required Methods

Calculate eigenvalues and eigenvectors of symmetric matrices, consuming the original

Implementations on Foreign Types

Implementors