Overload List
| # | Signature | Description |
|---|---|---|
| 1 | MatrixInt operator*(const MatrixInt &Left, const int Right); | Multiply all elements in Left with Right. |
| 2 | MatrixInt operator*(const int Left, const MatrixInt &Right); | Multiply all elements in Right with Left. |
| 3 | MatrixInt operator*(const MatrixInt &Left, TMtxInt *Right); | Multiply all elements in Left with corresponding elements in Right. |
| 4 | MatrixInt operator*(TMtxInt *Left, const MatrixInt &Right); | Multiply all elements in Left with corresponding elements in Right. |
| 5 | MatrixInt operator*(const MatrixInt &Left, const MatrixInt &Right); | Multiply all elements in Left with corresponding elements in Right. |
Overload 1: MatrixInt operator*(const MatrixInt &Left, const int Right);
Multiply all elements in Left with Right.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | const MatrixInt & | |
| 2 | Right | const int |
Declared in Dew::Math · Dew.Math/MtxExprInt.h · Cross-compiler
Overload 2: MatrixInt operator*(const int Left, const MatrixInt &Right);
Multiply all elements in Right with Left.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | const int | |
| 2 | Right | const MatrixInt & |
Declared in Dew::Math · Dew.Math/MtxExprInt.h · Cross-compiler
Overload 3: MatrixInt operator*(const MatrixInt &Left, TMtxInt *Right);
Multiply all elements in Left with corresponding elements in Right.
Declared in Dew::Math · Dew.Math/MtxExprInt.h · Cross-compiler
Overload 4: MatrixInt operator*(TMtxInt *Left, const MatrixInt &Right);
Multiply all elements in Left with corresponding elements in Right.
Declared in Dew::Math · Dew.Math/MtxExprInt.h · Cross-compiler