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

Solve linear equation using Cholesky factroization result

LAPACK correspondance

f32f64c32c64
spotrsdpotrscpotrszpotrs

Required Methods

Implementations on Foreign Types

Implementors