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

Compute inverse matrix using Cholesky factroization result

LAPACK correspondance

f32f64c32c64
spotridpotricpotrizpotri

Required Methods

Implementations on Foreign Types

Implementors