FactorizeH

Trait FactorizeH 

Source
pub trait FactorizeH<S: Data> {
    // Required method
    fn factorizeh(&self) -> Result<BKFactorized<S>>;
}
Expand description

An interface for computing the Bunch–Kaufman factorization of Hermitian (or real symmetric) matrix refs.

Required Methods§

Source

fn factorizeh(&self) -> Result<BKFactorized<S>>

Computes the Bunch–Kaufman factorization of a Hermitian (or real symmetric) matrix.

Implementations on Foreign Types§

Source§

impl<A> FactorizeH<OwnedRepr<A>> for ArrayRef<A, Ix2>
where A: Scalar + Lapack,

Implementors§