Vector::operator/ Operator

Overload List

#SignatureDescription
1Vector operator/(const Vector &Left, const TCplx &Right);Divide all elements in Left with Right.
2Vector operator/(const TCplx &Left, const Vector &Right);Divide Left with all elements Right.
3Vector operator/(const Vector &Left, const double Right);Divide all elements in Left with Right.
4Vector operator/(const double Left, const Vector &Right);Divide Left with all elements Right.
5Vector operator/(const Vector &Left, TMtxVec *Right);Divide all elements in Left with coresponding elements in Right.
6Vector operator/(const Vector &Left, const Matrix &Right);Divide all elements in Left with coresponding elements in Right.
7Vector operator/(TMtxVec *Left, const Vector &Right);Divide all elements in Left with coresponding elements in Right.
8Vector operator/(const Vector &Left, const Vector &Right);Divide all elements in Left with coresponding elements in Right.
9Matrix 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.

#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);

Divide Left with all elements Right.

#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);

Divide 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);

Divide Left with all elements Right.

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

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

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

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

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

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

Dividies Left with Right and returns result.

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