Overload List
| # | Signature | Description |
|---|---|---|
| 1 | Matrix LUSolve(TMtx B, TMtx A, TMtxType MtxType, TMtxOperation Operation) | Returns the X from LU solving A*X = B. |
| 2 | Vector LUSolve(TVec B, TMtx A, TMtxType MtxType, TMtxOperation Operation) | Returns the X from LU solving A*X = B. |
Overload 1: Matrix LUSolve(TMtx B, TMtx A, TMtxType MtxType, TMtxOperation Operation)
Returns the X from LU solving A*X = B.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | B | TMtx | source TMtx |
| 2 | A | TMtx | source TMtx |
| 3 | MtxType | TMtxType | |
| 4 | Operation | TMtxOperation |
Returns: Matrix
Remarks:
Internally calls Dew.Math.Matrix.LUSolve
Overload 2: Vector LUSolve(TVec B, TMtx A, TMtxType MtxType, TMtxOperation Operation)
Returns the X from LU solving A*X = B.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | B | TVec | source TVec |
| 2 | A | TMtx | source TMtx |
| 3 | MtxType | TMtxType | |
| 4 | Operation | TMtxOperation |
Returns: Vector
Remarks:
Internally calls Dew.Math.Matrix.LUSolve