Factorize

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

An interface for computing LU factorizations of matrix refs.

Required Methods§

Source

fn factorize(&self) -> Result<LUFactorized<S>, LinalgError>

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

Implementors§

Source§

impl<A, Si> Factorize<OwnedRepr<A>> for ArrayBase<Si, Dim<[usize; 2]>>
where A: Scalar + Lapack, Si: Data<Elem = A>,