pub trait CholeskyImpl: Scalar {
    fn cholesky(l: MatrixLayout, uplo: UPLO, a: &mut [Self]) -> Result<()>;
}
Expand description

Compute Cholesky decomposition according to UPLO

LAPACK correspondance

f32f64c32c64
spotrfdpotrfcpotrfzpotrf

Required Methods

Implementations on Foreign Types

Implementors