Trait ndarray_linalg::solve::FactorizeInto[][src]

pub trait FactorizeInto<S: Data + RawDataClone> {
    fn factorize_into(self) -> Result<LUFactorized<S>>;
}

An interface for computing LU factorizations of matrices.

Required methods

fn factorize_into(self) -> Result<LUFactorized<S>>[src]

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

Loading content...

Implementations on Foreign Types

impl<A, S> FactorizeInto<S> for ArrayBase<S, Ix2> where
    A: Scalar + Lapack,
    S: DataMut<Elem = A> + RawDataClone
[src]

Loading content...

Implementors

Loading content...