FactorizeHInto

Trait FactorizeHInto 

Source
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§

Source

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

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

Implementors§

Source§

impl<A, S> FactorizeHInto<S> for ArrayBase<S, Dim<[usize; 2]>>
where A: Scalar + Lapack, S: DataMut<Elem = A>,