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