LU decomposition on one matrix
A square matrix A can be decomposed into a product of a lower triangular matrix L and a upper triangular matrix U , as described in LU decomposition.
A = L U
The algorithm is a modified form of Gaussian elimination applied on a matrix array.