Overload List
| # | Signature | Description |
|---|---|---|
| 1 | bool operator>=(const Matrix &ALeft, const TCplx &ARight); | Returns true, if ALeft is greater than or equal to ARight. |
| 2 | bool operator>=(const TCplx &ALeft, const Matrix &ARight); | Returns true, if ALeft is greater than or equal to ARight. |
| 3 | bool operator>=(const Matrix &ALeft, const double ARight); | Returns true, if ALeft is greater than or equal to ARight. |
| 4 | bool operator>=(const double ALeft, const Matrix &ARight); | Returns true, if ALeft is greater than or equal to ARight. |
| 5 | bool operator>=(const Matrix &ALeft, const Matrix &ARight); | Returns true, if ALeft is greater than or equal to ARight. |
| 6 | bool operator>=(const Vector &ALeft, const Matrix &ARight); | Returns true, if ALeft is greater than or equal to ARight. |
| 7 | bool 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.
Returns true, if all elements in ALeft are greater than or equal to ARight.
Overload 2: bool operator>=(const TCplx &ALeft, const Matrix &ARight);
Returns true, if ALeft is greater than or equal to ARight.
Returns true, if ALeft is greater than or equal to all elements in ARight.
Overload 3: bool operator>=(const Matrix &ALeft, const double ARight);
Returns true, if ALeft is greater than or equal to ARight.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | ALeft | const Matrix & | |
| 2 | ARight | const double |
Returns true, if all elements in ALeft are greater than or equal to ARight.
Overload 4: bool operator>=(const double ALeft, const Matrix &ARight);
Returns true, if ALeft is greater than or equal to ARight.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | ALeft | const double | |
| 2 | ARight | const Matrix & |
Returns true, if ALeft is greater than or equal to all elements in ARight.
Overload 5: bool operator>=(const Matrix &ALeft, const Matrix &ARight);
Returns true, if ALeft is greater than or equal to ARight.
Returns true, if ALeft is greater than or equal to all elements in ARight.
Overload 6: bool operator>=(const Vector &ALeft, const Matrix &ARight);
Returns true, if ALeft is greater than or equal to ARight.
Returns true, if ALeft is greater than or equal to all elements in ARight.