Overload List
| # | Signature | Description |
|---|---|---|
| 1 | Matrix operator-(const Matrix &Left, TMtx *Right); | Subtracts Right from Left and returns result. |
| 2 | Matrix operator-(TMtx *Left, const Matrix &Right); | Subtracts Right from Left and returns result. |
| 3 | Vector operator-(const Vector &Left, TMtxVec *Right); | Subtract coresponding elements in Right from Left. |
| 4 | Vector operator-(TMtxVec *Left, const Vector &Right); | Subtract coresponding elements in Right from Left. |
| 5 | Matrix operator-(const Matrix &Left, TMtxVec *Right); | Subtracts Right from Left and returns result. |
| 6 | Matrix operator-(TMtxVec *Left, const Matrix &Right); | Subtracts Right from Left and returns result. |
Overload 1: Matrix operator-(const Matrix &Left, TMtx *Right);
Subtracts Right from Left and returns result.
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler
Overload 2: Matrix operator-(TMtx *Left, const Matrix &Right);
Subtracts Right from Left and returns result.
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler
Overload 3: Vector operator-(const Vector &Left, TMtxVec *Right);
Subtract coresponding elements in Right from Left.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | const Vector & | |
| 2 | Right | TMtxVec * |
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler
Overload 4: Vector operator-(TMtxVec *Left, const Vector &Right);
Subtract coresponding elements in Right from Left.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | TMtxVec * | |
| 2 | Right | const Vector & |
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler
Overload 5: Matrix operator-(const Matrix &Left, TMtxVec *Right);
Subtracts Right from Left and returns result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | const Matrix & | |
| 2 | Right | TMtxVec * |
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler
Overload 6: Matrix operator-(TMtxVec *Left, const Matrix &Right);
Subtracts Right from Left and returns result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | TMtxVec * | |
| 2 | Right | const Matrix & |
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler