Trait lax::Cholesky_[][src]

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

fn cholesky(l: MatrixLayout, uplo: UPLO, a: &mut [Self]) -> Result<()>[src]

Cholesky: wrapper of *potrf

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

fn inv_cholesky(l: MatrixLayout, uplo: UPLO, a: &mut [Self]) -> Result<()>[src]

Wrapper of *potri

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

fn solve_cholesky(
    l: MatrixLayout,
    uplo: UPLO,
    a: &[Self],
    b: &mut [Self]
) -> Result<()>
[src]

Wrapper of *potrs

Loading content...

Implementations on Foreign Types

impl Cholesky_ for f64[src]

impl Cholesky_ for f32[src]

impl Cholesky_ for c64[src]

impl Cholesky_ for c32[src]

Loading content...

Implementors

Loading content...