Trait ndarray_linalg::solve::Factorize [−][src]
pub trait Factorize<S: Data> { fn factorize(&self) -> Result<LUFactorized<S>>; }
An interface for computing LU factorizations of matrix refs.
Required Methods
fn factorize(&self) -> Result<LUFactorized<S>>
Computes the LU factorization A = P*L*U
, where P
is a permutation
matrix.
Implementations on Foreign Types
impl<A, Si> Factorize<OwnedRepr<A>> for ArrayBase<Si, Ix2> where
A: Scalar,
Si: Data<Elem = A>,
[src]
impl<A, Si> Factorize<OwnedRepr<A>> for ArrayBase<Si, Ix2> where
A: Scalar,
Si: Data<Elem = A>,
fn factorize(&self) -> Result<LUFactorized<OwnedRepr<A>>>
[src]
fn factorize(&self) -> Result<LUFactorized<OwnedRepr<A>>>