This is documentation for an old release of SciPy (version 0.10.0). Read this page in the documentation of the latest stable release (version 1.15.1).
Compute pivoted LU decompostion of a matrix.
The decomposition is:
A = P L U
where P is a permutation matrix, L lower triangular with unit diagonal elements, and U upper triangular.
Parameters : | a : array, shape (M, N)
permute_l : boolean
overwrite_a : boolean
|
---|---|
Returns : | (If permute_l == False) : p : array, shape (M, M)
l : array, shape (M, K)
u : array, shape (K, N)
(If permute_l == True) : pl : array, shape (M, K)
u : array, shape (K, N)
|
Notes
This is a LU factorization routine written for Scipy.