Trait lax::cholesky::SolveCholeskyImpl
source · pub trait SolveCholeskyImpl: Scalar {
// Required method
fn solve_cholesky(
l: MatrixLayout,
uplo: UPLO,
a: &[Self],
b: &mut [Self],
) -> Result<()>;
}
Expand description
Solve linear equation using Cholesky factroization result
§LAPACK correspondance
f32 | f64 | c32 | c64 |
---|---|---|---|
spotrs | dpotrs | cpotrs | zpotrs |
Required Methods§
fn solve_cholesky( l: MatrixLayout, uplo: UPLO, a: &[Self], b: &mut [Self], ) -> Result<()>
Object Safety§
This trait is not object safe.