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