Overload List
| # | Signature | Description |
|---|---|---|
| 1 | Vector Sub(TVec *X, TMtxVec *Y, TMtxVec *Z); | Compute X - Y - Z |
| 2 | Matrix Sub(TMtx *X, TMtxVec *Y, TMtxVec *Z); | Compute X - Y - Z, where X is a Matrix |
| 3 | Vector Sub(TVec *X, TMtxVec *Y, const double Z); | Compute X - Y - zScalar |
| 4 | Matrix Sub(TMtx *X, TMtxVec *Y, const double Z); | Compute X - Y - zScalar, where X is a Matrix. |
| 5 | Vector Sub(TVec *X, TMtxVec *Y, const TCplx &Z); | Compute X - Y - zScalar |
| 6 | Matrix Sub(TMtx *X, TMtxVec *Y, const TCplx &Z); | Compute X - Y - zScalar, where X is a Matrix. |
Overload 1: Vector Sub(TVec *X, TMtxVec *Y, TMtxVec *Z);
Compute X - Y - Z
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TVec * | |
| 2 | Y | TMtxVec * | |
| 3 | Z | TMtxVec * |
Remarks:
Computes the difference of three vector-based operands (X, Y, and Z) without creating temporary objects.
Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler
Overload 2: Matrix Sub(TMtx *X, TMtxVec *Y, TMtxVec *Z);
Compute X - Y - Z, where X is a Matrix
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtx * | |
| 2 | Y | TMtxVec * | |
| 3 | Z | TMtxVec * |
Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler
Overload 3: Vector Sub(TVec *X, TMtxVec *Y, const double Z);
Compute X - Y - zScalar
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TVec * | |
| 2 | Y | TMtxVec * | |
| 3 | Z | const double |
Remarks:
Computes the difference between X and Y and then subtracts a scalar zScalar, without creating temporary objects.
Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler
Overload 4: Matrix Sub(TMtx *X, TMtxVec *Y, const double Z);
Compute X - Y - zScalar, where X is a Matrix.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtx * | |
| 2 | Y | TMtxVec * | |
| 3 | Z | const double |
Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler
Overload 5: Vector Sub(TVec *X, TMtxVec *Y, const TCplx &Z);
Compute X - Y - zScalar
Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler