Trait ndarray_linalg::solve::FactorizeInto

source ·
pub trait FactorizeInto<S: Data + RawDataClone> {
    // Required method
    fn factorize_into(self) -> Result<LUFactorized<S>>;
}
Expand description

An interface for computing LU factorizations of matrices.

Required Methods§

source

fn factorize_into(self) -> Result<LUFactorized<S>>

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

Implementations on Foreign Types§

source§

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

Implementors§