Trait ndarray_linalg::solveh::FactorizeHInto [] [src]

pub trait FactorizeHInto<S: Data> {
    fn factorizeh_into(self) -> Result<FactorizedH<S>>;
}

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

Required Methods

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

Implementations on Foreign Types

impl<A, S> FactorizeHInto<S> for ArrayBase<S, Ix2> where
    A: Scalar,
    S: DataMut<Elem = A>, 
[src]

Implementors