The following tables list the members exposed by LU.
| Name | Description | |
|---|---|---|
| LU Constructor | Initializes a new instance of the LU class computing the LU factorization of a general complex matrix. |
| Name | Description | |
|---|---|---|
| Cols | Gets the number of columns of the matrix that is represented by the factorization. | |
| IsSingular | Gets a Boolean value indicating whether the LU factorization represents a singular matrix. | |
| L | Gets the L factor, the lower triangular part of the LU factorization. | |
| P | Gets the P factor, the permutation matrix of the LU factorization. | |
| Rows | Gets the number of rows of the matrix that is represented by the factorization. | |
| U | Gets the U factor, the upper triangular part of the LU factorization. |
| Name | Description | |
|---|---|---|
| Determinant | Returns the determinant of a square real matrix using its LU factorization. | |
| GetPivots | Gets an array of integers containing the pivot indices. | |
| Inverse | Returns the inverse of a square real matrix using its LU factorization. | |
| Solve | Solves a system of linear equations with multiple right hands using the LU factorization of a general real matrix. |