Trait ndarray_linalg::solveh::FactorizeHInto

source ·
pub trait FactorizeHInto<S: Data> {
    // Required method
    fn factorizeh_into(self) -> Result<BKFactorized<S>>;
}
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>>

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

Implementations on Foreign Types§

source§

impl<A, S> FactorizeHInto<S> for ArrayBase<S, Ix2>
where A: Scalar + Lapack, S: DataMut<Elem = A>,

Implementors§