clVector::operator* Operator

Overload List

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

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

Multiply all elements in Left with Right.

#NameTypeDescription
1Leftconst clVector &
2Rightconst TCplx &
Declared in Dew::Math · Dew.Math/clMtxExpr.h · Cross-compiler

Overload 2: clVector operator*(const TCplx &Left, const clVector &Right);

Multiply all elements in Right with Left.

#NameTypeDescription
1Leftconst TCplx &
2Rightconst clVector &
Declared in Dew::Math · Dew.Math/clMtxExpr.h · Cross-compiler

Overload 3: clVector operator*(const clVector &Left, const double Right);

Multiply all elements in Left with Right.

#NameTypeDescription
1Leftconst clVector &
2Rightconst double
Declared in Dew::Math · Dew.Math/clMtxExpr.h · Cross-compiler

Overload 4: clVector operator*(const double Left, const clVector &Right);

Multiply all elements in Right with Left.

#NameTypeDescription
1Leftconst double
2Rightconst clVector &
Declared in Dew::Math · Dew.Math/clMtxExpr.h · Cross-compiler

Overload 5: clVector operator*(const clVector &Left, TOpenCLMtxVec *Right);

Multiply all elements in Left with corresponding elements in Right.

#NameTypeDescription
1Leftconst clVector &
2RightTOpenCLMtxVec *
Declared in Dew::Math · Dew.Math/clMtxExpr.h · Cross-compiler

Overload 6: clVector operator*(TOpenCLMtxVec *Left, const clVector &Right);

Multiply all elements in Left with corresponding elements in Right.

#NameTypeDescription
1LeftTOpenCLMtxVec *
2Rightconst clVector &
Declared in Dew::Math · Dew.Math/clMtxExpr.h · Cross-compiler

Overload 7: clVector operator*(const clVector &Left, const clVector &Right);

Multiply all elements in Left with corresponding elements in Right

#NameTypeDescription
1Leftconst clVector &
2Rightconst clVector &
Declared in Dew::Math · Dew.Math/clMtxExpr.h · Cross-compiler

Overload 8: clMatrix operator*(const clMatrix &Left, const clVector &Right);

Multiplies Left with Right and returns result.

#NameTypeDescription
1Leftconst clMatrix &
2Rightconst clVector &
Declared in Dew::Math · Dew.Math/clMtxExpr.h · Cross-compiler

Overload 9: clMatrix operator*(const clVector &Left, const clMatrix &Right);

Multiplies Left with Right and returns result.

#NameTypeDescription
1Leftconst clVector &
2Rightconst clMatrix &
Declared in Dew::Math · Dew.Math/clMtxExpr.h · Cross-compiler