Vector::operator* Operator

Overload List

#SignatureDescription
1Vector operator*(const Vector &Left, const TCplx &Right);Multiply all elements in Left with Right.
2Vector operator*(const TCplx &Left, const Vector &Right);Multiply all elements in Right with Left.
3Vector operator*(const Vector &Left, const double Right);Multiply all elements in Left with Right.
4Vector operator*(const double Left, const Vector &Right);Multiply all elements in Right with Left.
5Vector operator*(const Vector &Left, TMtxVec *Right);Multiply all elements in Left with corresponding elements in Right.
6Vector operator*(TMtxVec *Left, const Vector &Right);Multiply all elements in Left with corresponding elements in Right.
7Vector operator*(const Vector &Left, const Vector &Right);Multiply all elements in Left with corresponding elements in Right.
8Matrix operator*(const Matrix &Left, const Vector &Right);Multiplies Left with Right and returns result.
9Matrix operator*(const Vector &Left, const Matrix &Right);Multiplies Left with Right and returns result.

Overload 1: Vector operator*(const Vector &Left, const TCplx &Right);

Multiply all elements in Left with Right.

#NameTypeDescription
1Leftconst Vector &
2Rightconst TCplx &
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.

#NameTypeDescription
1Leftconst TCplx &
2Rightconst Vector &
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.

#NameTypeDescription
1Leftconst Vector &
2Rightconst 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.

#NameTypeDescription
1Leftconst double
2Rightconst 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.

#NameTypeDescription
1Leftconst Vector &
2RightTMtxVec *
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.

#NameTypeDescription
1LeftTMtxVec *
2Rightconst 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.

#NameTypeDescription
1Leftconst Vector &
2Rightconst Vector &
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.

#NameTypeDescription
1Leftconst Matrix &
2Rightconst Vector &
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler

Overload 9: Matrix operator*(const Vector &Left, const Matrix &Right);

Multiplies Left with Right and returns result.

#NameTypeDescription
1Leftconst Vector &
2Rightconst Matrix &
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler