Trait lax::cholesky::CholeskyImpl

source ·
pub trait CholeskyImpl: Scalar {
    // Required method
    fn cholesky(l: MatrixLayout, uplo: UPLO, a: &mut [Self]) -> Result<()>;
}
Expand description

Compute Cholesky decomposition according to UPLO

§LAPACK correspondance

f32f64c32c64
spotrfdpotrfcpotrfzpotrf

Required Methods§

source

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

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl CholeskyImpl for f32

source§

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

source§

impl CholeskyImpl for f64

source§

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

source§

impl CholeskyImpl for c32

source§

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

source§

impl CholeskyImpl for c64

source§

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

Implementors§