Trait ndarray_linalg::hermite::HermiteMatrix [] [src]

pub trait HermiteMatrix: SquareMatrix + Matrix {
    fn eigh(self) -> Result<(Self::Vector, Self), LinalgError>;
    fn ssqrt(self) -> Result<Self, LinalgError>;
    fn cholesky(self) -> Result<Self, LinalgError>;
}

Methods for Hermite matrix

Required Methods

eigenvalue decomposition

symmetric square root of Hermite matrix

Cholesky factorization

Implementors