LU Factorization


Under certain conditions the system matrix A of the equation Ax = b can be expressed in the form of a product of a unit lower triangular matrix L with units on the main diagonal and an upper triangular matrix U,and as the result, one has to solve two systems with triangular matrices.

LU Factorization computes matrices L and U such that

	A = L * U

where A is a real, double-precision square matrix, L is a matrix with the same type and dimension as A, and U is an upper triangular matrix with the same type and dimension as A.