Trait nalgebra_lapack::CholeskyScalar [] [src]

pub trait CholeskyScalar: Scalar {
    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); }

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

Required Methods

Implementations on Foreign Types

impl CholeskyScalar for f32
[src]

[src]

[src]

[src]

impl CholeskyScalar for f64
[src]

[src]

[src]

[src]

impl CholeskyScalar for Complex<f32>
[src]

[src]

[src]

[src]

impl CholeskyScalar for Complex<f64>
[src]

[src]

[src]

[src]

Implementors