pub trait LinearAlgebra {
    fn lu(&self) -> Option<PQLU>;
    fn det(&self) -> f64;
    fn block(&self) -> (Matrix, Matrix, Matrix, Matrix);
    fn inv(&self) -> Option<Matrix>;
}
Expand description

Linear algebra trait

Required Methods§

Implementors§