Trait wee_matrix::LUDecompose [] [src]

pub trait LUDecompose: Sized {
    type PermutationStore;
    fn lu(&self) -> Result<LU<Self, Self::PermutationStore>, Error>;
}

Trait providing LU decomposition.

Associated Types

How this decomposition will store permutations

Required Methods

Decompose into an LU decomposition structure

Implementors