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