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