[][src]Trait ndarray_linalg::solveh::FactorizeH

pub trait FactorizeH<S: Data> {
    fn factorizeh(&self) -> Result<BKFactorized<S>>;
}
[]

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

Required methods

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

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

Implementations on Foreign Types

impl<A, Si> FactorizeH<OwnedRepr<A>> for ArrayBase<Si, Ix2> where
    A: Scalar + Lapack,
    Si: Data<Elem = A>, 
[src][]

Implementors