MatrixInt::operator/ Operator

Overload List

#SignatureDescription
1MatrixInt operator/(const MatrixInt &Left, const int Right);Divide all elements in Left with Right.
2MatrixInt operator/(const int Left, const MatrixInt &Right);Divide Left with all elements Right.
3MatrixInt operator/(const MatrixInt &Left, TMtxInt *Right);Divide all elements in Left with coresponding elements in Right.
4MatrixInt operator/(TMtxInt *Left, const MatrixInt &Right);Divide all elements in Left with coresponding elements in Right.
5MatrixInt operator/(const MatrixInt &Left, const MatrixInt &Right);Divide all elements in Left with coresponding elements in Right.

Overload 1: MatrixInt operator/(const MatrixInt &Left, const int Right);

Divide all elements in Left with Right.

#NameTypeDescription
1Leftconst MatrixInt &
2Rightconst int
Declared in Dew::Math · Dew.Math/MtxExprInt.h · Cross-compiler

Overload 2: MatrixInt operator/(const int Left, const MatrixInt &Right);

Divide Left with all elements Right.

#NameTypeDescription
1Leftconst int
2Rightconst MatrixInt &
Declared in Dew::Math · Dew.Math/MtxExprInt.h · Cross-compiler

Overload 3: MatrixInt operator/(const MatrixInt &Left, TMtxInt *Right);

Divide all elements in Left with coresponding elements in Right.

#NameTypeDescription
1Leftconst MatrixInt &
2RightTMtxInt *
Declared in Dew::Math · Dew.Math/MtxExprInt.h · Cross-compiler

Overload 4: MatrixInt operator/(TMtxInt *Left, const MatrixInt &Right);

Divide all elements in Left with coresponding elements in Right.

#NameTypeDescription
1LeftTMtxInt *
2Rightconst MatrixInt &
Declared in Dew::Math · Dew.Math/MtxExprInt.h · Cross-compiler

Overload 5: MatrixInt operator/(const MatrixInt &Left, const MatrixInt &Right);

Divide all elements in Left with coresponding elements in Right.

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