Trait wee_matrix::CholeskyDecompose [] [src]

pub trait CholeskyDecompose: Sized {
    fn chol(&self) -> Result<Cholesky<Self>, Error>;
}

Trait providing Cholesky decomposition

Required Methods

Decompose into a cholesky decomposition structure.

Implementors