TVec::operator/ Operator

Overload List

#SignatureDescription
1Vector operator/(const Vector &Left, TMtxVec *Right);Divide all elements in Left with coresponding elements in Right.
2Vector operator/(TMtxVec *Left, const Vector &Right);Divide all elements in Left with coresponding elements in Right.
3Matrix operator/(const Matrix &Left, TMtxVec *Right);Dividies Left with Right and returns result.
4Matrix operator/(TMtxVec *Left, const Matrix &Right);Dividies Left with Right and returns result.

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

Divide all elements in Left with coresponding elements in Right.

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

Overload 2: Vector operator/(TMtxVec *Left, const Vector &Right);

Divide all elements in Left with coresponding elements in Right.

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

Overload 3: Matrix operator/(const Matrix &Left, TMtxVec *Right);

Dividies Left with Right and returns result.

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

Overload 4: Matrix operator/(TMtxVec *Left, const Matrix &Right);

Dividies Left with Right and returns result.

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