Overload List
| # | Signature | Description |
|---|---|---|
| 1 | Matrix LUSolve(TMtx *B, TMtx *A, TMtxType MtxType = TMtxType::mtGeneral, TMtxOperation Operation = TMtxOperation::opNone); | Returns the X from LU solving A*X = B. |
| 2 | Vector LUSolve(TVec *B, TMtx *A, TMtxType MtxType = TMtxType::mtGeneral, TMtxOperation Operation = TMtxOperation::opNone); | Returns the X from LU solving A*X = B. |
Overload 1: Matrix LUSolve(TMtx *B, TMtx *A, TMtxType MtxType = TMtxType::mtGeneral, TMtxOperation Operation = TMtxOperation::opNone);
Returns the X from LU solving A*X = B.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | B | TMtx * | |
| 2 | A | TMtx * | |
| 3 | MtxType = TMtxType::mtGeneral | TMtxType | |
| 4 | Operation = TMtxOperation::opNone | TMtxOperation |
Remarks:
Internally calls Matrix::LUSolve
Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler
Overload 2: Vector LUSolve(TVec *B, TMtx *A, TMtxType MtxType = TMtxType::mtGeneral, TMtxOperation Operation = TMtxOperation::opNone);
Returns the X from LU solving A*X = B.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | B | TVec * | |
| 2 | A | TMtx * | |
| 3 | MtxType = TMtxType::mtGeneral | TMtxType | |
| 4 | Operation = TMtxOperation::opNone | TMtxOperation |
Remarks:
Internally calls Matrix::LUSolve
Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler