|
LU
LU factorization of a matrix as the product of a lower triangular matrix and an upper triangular matrix.
bool matrix::LU(
|
Parameters
L key
[out] Lower triangular matrix.
U
[out] Upper triangular matrix.
Return Value
Returns true on success, false otherwise.
Example
matrix matrix_a={{1,2,3,4},
|