lu_ndarray

Function lu_ndarray 

Source
pub fn lu_ndarray<T>(a: &Array2<T>) -> LapackResult<LuResult<T>>
where T: Zeroable + Field + Clone,
Expand description

Computes the LU decomposition of a matrix.

A = P * L * U

§Arguments

  • a - The input matrix (m×n)

§Returns

LU decomposition with L, U, and permutation