Trait ndarray_linalg::solve::Factorize [] [src]

pub trait Factorize<S: Data> {
    fn factorize(&self) -> Result<Factorized<S>>;
}

An interface for computing LU factorizations of matrix refs.

Required Methods

Computes the LU factorization A = P*L*U, where P is a permutation matrix.

Implementors