Trait ndarray_linalg::eigh::EighInplace
source · pub trait EighInplace {
type EigVal;
// Required method
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§
fn eigh_inplace(&mut self, uplo: UPLO) -> Result<(Self::EigVal, &mut Self)>
Object Safety§
This trait is not object safe.