Matrix::operator== Operator

Overload List

#SignatureDescription
1bool operator==(const Vector &Left, const Matrix &Right);Returns true, if Left and Right are of equal Length and Values.
2bool operator==(const Matrix &Left, const Matrix &Right);Returns true, if all elements of Left are equal to Right.
3bool operator==(const Matrix &Left, double Right);Returns true, if all elements of Left are equal to Right.
4bool operator==(double Left, const Matrix &Right);Returns true, if Left is equal to all elements in Right.
5bool operator==(const Matrix &Left, const TCplx &Right);Returns true, if all elements of Left are equal to Right.
6bool operator==(const TCplx &Left, const Matrix &Right);Returns true, if Left is equal to all elements in Right.
7bool operator==(TMtx *Left, const Matrix &Right);Returns true, if all elements of Left are equal to Right.
8bool operator==(const Matrix &Left, TMtx *Right);Returns true, if all elements of Left are equal to Right.
9bool operator==(TVec *Left, const Matrix &Right);Returns true, if all elements of Left are equal to Right.
10bool operator==(const Matrix &Left, TVec *Right);Returns true, if all elements of Left are equal to Right.

Overload 1: bool operator==(const Vector &Left, const Matrix &Right);

Returns true, if Left and Right are of equal Length and Values.

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

Overload 2: bool operator==(const Matrix &Left, const Matrix &Right);

Returns true, if all elements of Left are equal to Right.

#NameTypeDescription
1Leftconst Matrix &
2Rightconst Matrix &
Remarks:

Size and Complex properties must also match.

Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler

Overload 3: bool operator==(const Matrix &Left, double Right);

Returns true, if all elements of Left are equal to Right.

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

Overload 4: bool operator==(double Left, const Matrix &Right);

Returns true, if Left is equal to all elements in Right.

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

Overload 5: bool operator==(const Matrix &Left, const TCplx &Right);

Returns true, if all elements of Left are equal to Right.

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

Overload 6: bool operator==(const TCplx &Left, const Matrix &Right);

Returns true, if Left is equal to all elements in Right.

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

Overload 7: bool operator==(TMtx *Left, const Matrix &Right);

Returns true, if all elements of Left are equal to Right.

#NameTypeDescription
1LeftTMtx *
2Rightconst Matrix &
Remarks:

Size and Complex properties must also match.

Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler

Overload 8: bool operator==(const Matrix &Left, TMtx *Right);

Returns true, if all elements of Left are equal to Right.

#NameTypeDescription
1Leftconst Matrix &
2RightTMtx *
Remarks:

Size and Complex properties must also match.

Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler

Overload 9: bool operator==(TVec *Left, const Matrix &Right);

Returns true, if all elements of Left are equal to Right.

#NameTypeDescription
1LeftTVec *
2Rightconst Matrix &
Remarks:

Size and Complex properties must also match.

Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler

Overload 10: bool operator==(const Matrix &Left, TVec *Right);

Returns true, if all elements of Left are equal to Right.

#NameTypeDescription
1Leftconst Matrix &
2RightTVec *
Remarks:

Size and Complex properties must also match.

Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler