Trait ndarray_linalg::solve::FactorizeInto
[−]
[src]
pub trait FactorizeInto<S: Data> { fn factorize_into(self) -> Result<Factorized<S>>; }
An interface for computing LU factorizations of matrices.
Required Methods
fn factorize_into(self) -> Result<Factorized<S>>
Computes the LU factorization A = P*L*U, where P is a permutation
matrix.