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<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.