Function lu_ndarray
Source pub fn lu_ndarray<T>(a: &Array2<T>) -> LapackResult<LuResult<T>>
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