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