Trait ndarray_linalg::cholesky::Cholesky []

pub trait Cholesky {
    type Output;
    fn cholesky(&self, _: UPLO) -> Result<Self::Output>;
}

Cholesky decomposition of matrix reference

Associated Types

Required Methods

Implementors