Matrix::operator>= Operator

Overload List

#SignatureDescription
1bool operator>=(const Matrix &ALeft, const TCplx &ARight);Returns true, if ALeft is greater than or equal to ARight.
2bool operator>=(const TCplx &ALeft, const Matrix &ARight);Returns true, if ALeft is greater than or equal to ARight.
3bool operator>=(const Matrix &ALeft, const double ARight);Returns true, if ALeft is greater than or equal to ARight.
4bool operator>=(const double ALeft, const Matrix &ARight);Returns true, if ALeft is greater than or equal to ARight.
5bool operator>=(const Matrix &ALeft, const Matrix &ARight);Returns true, if ALeft is greater than or equal to ARight.
6bool operator>=(const Vector &ALeft, const Matrix &ARight);Returns true, if ALeft is greater than or equal to ARight.
7bool operator>=(const Matrix &ALeft, const Vector &ARight);Returns true, if ALeft is greater than or equal to ARight.

Overload 1: bool operator>=(const Matrix &ALeft, const TCplx &ARight);

Returns true, if ALeft is greater than or equal to ARight.

#NameTypeDescription
1ALeftconst Matrix &
2ARightconst TCplx &
Remarks:

Returns true, if all elements in ALeft are greater than or equal to ARight.

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

Overload 2: bool operator>=(const TCplx &ALeft, const Matrix &ARight);

Returns true, if ALeft is greater than or equal to ARight.

#NameTypeDescription
1ALeftconst TCplx &
2ARightconst Matrix &
Remarks:

Returns true, if ALeft is greater than or equal to all elements in ARight.

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

Overload 3: bool operator>=(const Matrix &ALeft, const double ARight);

Returns true, if ALeft is greater than or equal to ARight.

#NameTypeDescription
1ALeftconst Matrix &
2ARightconst double
Remarks:

Returns true, if all elements in ALeft are greater than or equal to ARight.

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

Overload 4: bool operator>=(const double ALeft, const Matrix &ARight);

Returns true, if ALeft is greater than or equal to ARight.

#NameTypeDescription
1ALeftconst double
2ARightconst Matrix &
Remarks:

Returns true, if ALeft is greater than or equal to all elements in ARight.

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

Overload 5: bool operator>=(const Matrix &ALeft, const Matrix &ARight);

Returns true, if ALeft is greater than or equal to ARight.

#NameTypeDescription
1ALeftconst Matrix &
2ARightconst Matrix &
Remarks:

Returns true, if ALeft is greater than or equal to all elements in ARight.

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

Overload 6: bool operator>=(const Vector &ALeft, const Matrix &ARight);

Returns true, if ALeft is greater than or equal to ARight.

#NameTypeDescription
1ALeftconst Vector &
2ARightconst Matrix &
Remarks:

Returns true, if ALeft is greater than or equal to all elements in ARight.

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

Overload 7: bool operator>=(const Matrix &ALeft, const Vector &ARight);

Returns true, if ALeft is greater than or equal to ARight.

#NameTypeDescription
1ALeftconst Matrix &
2ARightconst Vector &
Remarks:

Returns true, if ALeft is greater than or equal to all elements in ARight.

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