pub trait FactorizeHInto<S>where
S: Data,{
// Required method
fn factorizeh_into(self) -> Result<BKFactorized<S>, LinalgError>;
}Expand description
An interface for computing the Bunch–Kaufman factorization of Hermitian (or real symmetric) matrices.
Required Methods§
Sourcefn factorizeh_into(self) -> Result<BKFactorized<S>, LinalgError>
fn factorizeh_into(self) -> Result<BKFactorized<S>, LinalgError>
Computes the Bunch–Kaufman factorization of a Hermitian (or real symmetric) matrix.