Overload List
| # | Signature | Description |
|---|---|---|
| 1 | MatrixInt operator+(const int Left, const MatrixInt &Right); | Add left to all elements in Right and return result. |
| 2 | MatrixInt operator+(const MatrixInt &Left, const int Right); | Add Right to all elements in Left and return result. |
| 3 | MatrixInt operator+(TMtxInt *Left, const MatrixInt &Right); | Add coresponding elements in Left and Right. |
| 4 | MatrixInt operator+(const MatrixInt &Left, TMtxInt *Right); | Add coresponding elements in Left and Right. |
| 5 | MatrixInt operator+(const MatrixInt &Left, const MatrixInt &Right); | Add coresponding elements in Left and Right. |
Overload 1: MatrixInt operator+(const int Left, const MatrixInt &Right);
Add left to all elements in Right and return result.
| # | 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);
Add Right to all elements in Left and return result.
| # | 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+(TMtxInt *Left, const MatrixInt &Right);
Add coresponding elements in Left and Right.
Declared in Dew::Math · Dew.Math/MtxExprInt.h · Cross-compiler
Overload 4: MatrixInt operator+(const MatrixInt &Left, TMtxInt *Right);
Add coresponding elements in Left and Right.
Declared in Dew::Math · Dew.Math/MtxExprInt.h · Cross-compiler