Overload List
| # | Signature | Description |
|---|---|---|
| 1 | MatrixInt operator-(const int Left, const MatrixInt &Right); | Subtract all elements in Right from Left. |
| 2 | MatrixInt operator-(const MatrixInt &Left, const int Right); | Subtract Right from all elements in Left. |
| 3 | MatrixInt operator-(const MatrixInt &Left, TMtxInt *Right); | Subtract coresponding elements in Right from Left. |
| 4 | MatrixInt operator-(TMtxInt *Left, const MatrixInt &Right); | Subtract coresponding elements in Right from Left. |
| 5 | MatrixInt operator-(const MatrixInt &Left, const MatrixInt &Right); | Subtract coresponding elements in Right from Left. |
| 6 | MatrixInt operator-(const MatrixInt &AValue); | Negates all values inside AValue. |
Overload 1: MatrixInt operator-(const int Left, const MatrixInt &Right);
Subtract all elements in Right from Left.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | const int | |
| 2 | Right | const MatrixInt & |
Declared in Dew::Math · Dew.Math/MtxExprInt.h · Cross-compiler
Overload 2: MatrixInt operator-(const MatrixInt &Left, const int Right);
Subtract Right from all elements in Left.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | const MatrixInt & | |
| 2 | Right | const int |
Declared in Dew::Math · Dew.Math/MtxExprInt.h · Cross-compiler
Overload 3: MatrixInt operator-(const MatrixInt &Left, TMtxInt *Right);
Subtract coresponding elements in Right from Left.
Declared in Dew::Math · Dew.Math/MtxExprInt.h · Cross-compiler
Overload 4: MatrixInt operator-(TMtxInt *Left, const MatrixInt &Right);
Subtract coresponding elements in Right from Left.
Declared in Dew::Math · Dew.Math/MtxExprInt.h · Cross-compiler
Overload 5: MatrixInt operator-(const MatrixInt &Left, const MatrixInt &Right);
Subtract coresponding elements in Right from Left.
Declared in Dew::Math · Dew.Math/MtxExprInt.h · Cross-compiler
Overload 6: MatrixInt operator-(const MatrixInt &AValue);
Negates all values inside AValue.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AValue | const MatrixInt & |
Declared in Dew::Math · Dew.Math/MtxExprInt.h · Cross-compiler