Overload List
| # | Signature | Description |
|---|---|---|
| 1 | Vector operator+(const TCplx &Left, const Vector &Right); | Add left to all elements in Right and return result. |
| 2 | Vector operator+(const Vector &Left, const TCplx &Right); | Add Right to all elements in Left and return result. |
| 3 | Vector operator+(const double Left, const Vector &Right); | Add left to all elements in Right and return result. |
| 4 | Vector operator+(const Vector &Left, const double Right); | Add Right to all elements in Left and return result. |
| 5 | Vector operator+(TMtxVec *Left, const Vector &Right); | Add coresponding elements in Left and Right. |
| 6 | Vector operator+(const Vector &Left, TMtxVec *Right); | Add coresponding elements in Left and Right. |
| 7 | Vector operator+(const Vector &Left, const Matrix &Right); | Add coresponding elements in Left and Right. |
| 8 | Vector operator+(const Vector &Left, const Vector &Right); | Add coresponding elements in Left and Right. |
| 9 | Matrix operator+(const Matrix &Left, const Vector &Right); | Adds Left to Right and returns result. |
Overload 1: Vector operator+(const TCplx &Left, const Vector &Right);
Add left to all elements in Right and return result.
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler
Overload 2: Vector operator+(const Vector &Left, const TCplx &Right);
Add Right to all elements in Left and return result.
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler
Overload 3: Vector operator+(const double Left, const Vector &Right);
Add left to all elements in Right and return result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | const double | |
| 2 | Right | const Vector & |
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler
Overload 4: Vector operator+(const Vector &Left, const double Right);
Add Right to all elements in Left and return result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | const Vector & | |
| 2 | Right | const double |
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler
Overload 5: 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 6: 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 7: Vector operator+(const Vector &Left, const Matrix &Right);
Add coresponding elements in Left and Right.
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler
Overload 8: Vector operator+(const Vector &Left, const Vector &Right);
Add coresponding elements in Left and Right.
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler