Overload List
Overload 1: Vector operator*(const Vector &Left, const TCplx &Right);
Multiply all elements in Left with Right.
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler
Overload 2: Vector operator*(const TCplx &Left, const Vector &Right);
Multiply all elements in Right with Left.
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler
Overload 3: Vector operator*(const Vector &Left, const double Right);
Multiply all elements in Left with Right.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | const Vector & | |
| 2 | Right | const double |
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler
Overload 4: Vector operator*(const double Left, const Vector &Right);
Multiply all elements in Right with Left.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | const double | |
| 2 | Right | const Vector & |
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler
Overload 5: Vector operator*(const Vector &Left, TMtxVec *Right);
Multiply all elements in Left with corresponding elements in Right.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | const Vector & | |
| 2 | Right | TMtxVec * |
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler
Overload 6: Vector operator*(TMtxVec *Left, const Vector &Right);
Multiply all elements in Left with corresponding elements in Right.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | TMtxVec * | |
| 2 | Right | const Vector & |
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler
Overload 7: Vector operator*(const Vector &Left, const Vector &Right);
Multiply all elements in Left with corresponding elements in Right.
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler
Overload 8: Matrix operator*(const Matrix &Left, const Vector &Right);
Multiplies Left with Right and returns result.
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler