FactorizeInto

Trait FactorizeInto 

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

An interface for computing LU factorizations of matrices.

Required Methods§

Source

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

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

Implementors§

Source§

impl<A, S> FactorizeInto<S> for ArrayBase<S, Dim<[usize; 2]>>
where A: Scalar + Lapack, S: DataMut<Elem = A> + RawDataClone,