Trait ndarray_linalg::solve::Factorize [−][src]
pub trait Factorize<S: Data + RawDataClone> { fn factorize(&self) -> Result<LUFactorized<S>>; }
Expand description
An interface for computing LU factorizations of matrix refs.
Required methods
fn factorize(&self) -> Result<LUFactorized<S>>
fn factorize(&self) -> Result<LUFactorized<S>>
Computes the LU factorization A = P*L*U, where P is a permutation
matrix.