Trait ndarray_linalg::solve::Factorize

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

An interface for computing LU factorizations of matrix refs.

Required Methods§

source

fn factorize(&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, Si> Factorize<OwnedRepr<A>> for ArrayBase<Si, Ix2>
where A: Scalar + Lapack, Si: Data<Elem = A>,

Implementors§