pub trait EighInplace {
    type EigVal;

    fn eigh_inplace(&mut self, uplo: UPLO) -> Result<(Self::EigVal, &mut Self)>;
}
Expand description

Eigenvalue decomposition of mutable reference of Hermite matrix

Required Associated Types

Required Methods

Implementations on Foreign Types

Solves the generalized eigenvalue problem.

Panics

Panics if the shapes of the matrices are different.

Implementors