LU factorization with complete pivoting.
To compute the LU factorization under default settings:
[L U p q] = lucp(A)
This produces a factorization such that L*U = A(p,q). Vectors p and q permute the rows and columns, respectively.
The pivot tolerance can be controlled:
[L U p q] = lucp(A,tol)
The algorithm will terminate if the absolute value of the pivot is less than tol.
Permutation matrices can be generated:
[L U P Q] = lucp(A,tol,'matrix')
[L U P Q] = lucp(A,tol,'sparse')
The first will generate full permutation matrices P and Q such that L*U = P*A*Q. The second generates sparse P and Q.
If A is sparse, L and U will be sparse. However, no effort is taken to reduce fill in.
This function works on non-square matrices.
Citar como
Nick Henderson (2026). LU factorization with complete pivoting. (https://la.mathworks.com/matlabcentral/fileexchange/27249-lu-factorization-with-complete-pivoting), MATLAB Central File Exchange. Recuperado .
Compatibilidad con la versión de MATLAB
Compatibilidad con las plataformas
Windows macOS LinuxCategorías
- MATLAB > Mathematics > Sparse Matrices >
Etiquetas
Agradecimientos
Inspirado por: Gauss elimination with complete pivoting, Gaussian Elimination using Complete Pivoting
Descubra Live Editor
Cree scripts con código, salida y texto formateado en un documento ejecutable.
