Matrix Factorizations¶
In some applications, you may want to just factor the n × n matrix
A into a product of two triangular matrices, which you can do by calling the
appropriate function from the imsl.linalg
package.
Suppose that you need the LU factorization of a general square matrix A. In
order to get access to the factorization, use function
imsl.linalg.lu_factor()
.