Matrix::operator!= Operator

Overload List

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

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

Returns true, if Left and Right do not have 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 any elements in Left are not equal to Right.

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

Size or Complex properties also do not match.

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

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

Returns true, if any elements in Left are not equal to Right.

#NameTypeDescription
1Leftconst Matrix &
2Rightdouble
Remarks:

Size or Complex properties also do not match.

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

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

Returns true, if any elements in Right are not equal to Left.

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

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

Returns true, if any elements in Left are not equal to Right.

#NameTypeDescription
1LeftMatrix
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 any elements in Right are not equal to Left.

#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 any elements in Left are not equal to Right.

#NameTypeDescription
1LeftTMtx *
2Rightconst Matrix &
Remarks:

Size or Complex properties also do not match.

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

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

Returns true, if any elements in Left are not equal to Right.

#NameTypeDescription
1LeftTVec *
2Rightconst Matrix &
Remarks:

Size or Complex properties also do not match.

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

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

Returns true, if any elements in Left are not equal to Right.

#NameTypeDescription
1Leftconst Matrix &
2RightTMtx *
Remarks:

Size or Complex properties also do not match.

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

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

Returns true, if any elements in Left are not equal to Right.

#NameTypeDescription
1Leftconst Matrix &
2RightTVec *
Remarks:

Size or Complex properties also do not match.

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