FactorizeH

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§

Source

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

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

Implementors§

Source§

impl<A, Si> FactorizeH<OwnedRepr<A>> for ArrayBase<Si, Dim<[usize; 2]>>
where A: Scalar + Lapack, Si: Data<Elem = A>,