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