[][src]Trait nalgebra_lapack::CholeskyScalar

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 decomposition.

Required methods

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)

Loading content...

Implementations on Foreign Types

impl CholeskyScalar for f32[src]

impl CholeskyScalar for f64[src]

impl CholeskyScalar for Complex<f32>[src]

impl CholeskyScalar for Complex<f64>[src]

Loading content...

Implementors

Loading content...