Trait ndarray_linalg::lapack_traits::cholesky::Cholesky_ [] [src]

pub trait Cholesky_: Sized {
    unsafe fn cholesky(_: MatrixLayout, _: UPLO, a: &mut [Self]) -> Result<()>;
unsafe fn inv_cholesky(
        _: MatrixLayout,
        _: UPLO,
        a: &mut [Self]
    ) -> Result<()>;
unsafe fn solve_cholesky(
        _: MatrixLayout,
        _: UPLO,
        a: &[Self],
        b: &mut [Self]
    ) -> Result<()>; }

Required Methods

Cholesky: wrapper of *potrf

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

Wrapper of *potri

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

Wrapper of *potrs

Implementations on Foreign Types

impl Cholesky_ for f64
[src]

[src]

[src]

[src]

impl Cholesky_ for f32
[src]

[src]

[src]

[src]

Implementors