LUdecomposed
LUdecomposed is a term that refers to a matrix that has undergone LU decomposition. LU decomposition, also known as LU factorization, is a method of matrix decomposition that breaks down a given square matrix into the product of two matrices: a lower triangular matrix (L) and an upper triangular matrix (U). This decomposition is particularly useful in numerical linear algebra for solving systems of linear equations, finding the determinant of a matrix, and inverting matrices.
The process of LU decomposition involves transforming the original matrix into an upper triangular matrix through
A LUdecomposed matrix, therefore, is no longer the original matrix but its factored form, L * U.