pub trait LuImpl: Scalar {
    fn lu(l: MatrixLayout, a: &mut [Self]) -> Result<Pivot>;
}
Expand description

Helper trait to abstract *getrf LAPACK routines for implementing Lapack::lu

LAPACK correspondance

f32f64c32c64
sgetrfdgetrfcgetrfzgetrf

Required Methods

Implementations on Foreign Types

Implementors