![]() |
• Math Library | ||||||||
|
API Links
Developer Links
|
Math::LUDecomposeDefined in:
Performs the LU decomposition of an n × n matrix M.
C4Computation.hPrototype
Parameters
Description
The LUDecompose function performs the LU decomposition of an n × n matrix M. The decomposition is performed in place—the decomposed matrix entries are returned in the space occupied by M. This function also returns an array of indexes that indicate how the rows were permuted during the decomposition process. The decomposed matrix and the permutation array are passed to the Math::LUBacksubstitute function to solve linear systems.The LUDecompose function returns false if the matrix M is singular and true otherwise.
See Also
|