pub trait CholeskyScalar: Scalar + Copy {
    fn xpotrf(uplo: u8, n: i32, a: &mut [Self], lda: i32, info: &mut i32);
    fn xpotrs(
        uplo: u8,
        n: i32,
        nrhs: i32,
        a: &[Self],
        lda: i32,
        b: &mut [Self],
        ldb: i32,
        info: &mut i32
    ); fn xpotri(uplo: u8, n: i32, a: &mut [Self], lda: i32, info: &mut i32); }
Expand description

Trait implemented by floats (f32, f64) and complex floats (Complex<f32>, Complex<f64>) supported by the cholesky decomposition.

Required Methods§

Implementations on Foreign Types§

Implementors§