pub trait Cholesky_: Sized {
    fn cholesky(l: MatrixLayout, uplo: UPLO, a: &mut [Self]) -> Result<()>;
    fn inv_cholesky(l: MatrixLayout, uplo: UPLO, a: &mut [Self]) -> Result<()>;
    fn solve_cholesky(
        l: MatrixLayout,
        uplo: UPLO,
        a: &[Self],
        b: &mut [Self]
    ) -> Result<()>; }

Required Methods

Cholesky: wrapper of *potrf

Warning: Only the portion of a corresponding to UPLO is written.

Wrapper of *potri

Warning: Only the portion of a corresponding to UPLO is written.

Wrapper of *potrs

Implementations on Foreign Types

Implementors