pub trait LuImpl: Scalar {
// Required method
fn lu(l: MatrixLayout, a: &mut [Self]) -> Result<Pivot>;
}
Expand description
Helper trait to abstract *getrf
LAPACK routines for implementing Lapack::lu
§LAPACK correspondance
f32 | f64 | c32 | c64 |
---|---|---|---|
sgetrf | dgetrf | cgetrf | zgetrf |
Required Methods§
fn lu(l: MatrixLayout, a: &mut [Self]) -> Result<Pivot>
Object Safety§
This trait is not object safe.