Compute pivoted LU decomposition 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 : (M, M) array_like
overwrite_a : boolean
check_finite : boolean, optional
|
---|---|
Returns : | lu : (N, N) ndarray
piv : (N,) ndarray
|
See also
Notes
This is a wrapper to the *GETRF routines from LAPACK.