Trait lax::cholesky::InvCholeskyImpl

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

Compute inverse matrix using Cholesky factroization result

§LAPACK correspondance

f32f64c32c64
spotridpotricpotrizpotri

Required Methods§

source

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

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl InvCholeskyImpl for f32

source§

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

source§

impl InvCholeskyImpl for f64

source§

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

source§

impl InvCholeskyImpl for c32

source§

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

source§

impl InvCholeskyImpl for c64

source§

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

Implementors§