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
f32 | f64 | c32 | c64 |
---|---|---|---|
spotri | dpotri | cpotri | zpotri |
Required Methods§
fn inv_cholesky(l: MatrixLayout, uplo: UPLO, a: &mut [Self]) -> Result<()>
Object Safety§
This trait is not object safe.