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