Overload List
| # | Signature | Description |
|---|---|---|
| 1 | bool Bigger(const TCplx &X, const TCplx &Y); | Compares two complex numbers. |
| 2 | bool Bigger(const TSCplx &X, const TSCplx &Y); | |
| 3 | bool Bigger(const TCplx &X, const double Y); | Compare one real and one complex number. |
| 4 | bool Bigger(const TSCplx &X, const float Y); | |
| 5 | bool Bigger(const double X, const TCplx &Y); | Compare one real and one complex number. |
| 6 | bool Bigger(const float X, const TSCplx &Y); | |
| 7 | bool Bigger(const double A, const double B, const double Tol = 1E-4); | Compare two real numbers. |
Overload 1: bool Bigger(const TCplx &X, const TCplx &Y);
Compares two complex numbers.
Returns: True if X is bigger then Y. If absolute values are equal it compares the phase
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler
Overload 2: bool Bigger(const TSCplx &X, const TSCplx &Y);
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler
Overload 3: bool Bigger(const TCplx &X, const double Y);
Compare one real and one complex number.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | const TCplx & | |
| 2 | Y | const double |
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler
Overload 4: bool Bigger(const TSCplx &X, const float Y);
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | const TSCplx & | |
| 2 | Y | const float |
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler
Overload 5: bool Bigger(const double X, const TCplx &Y);
Compare one real and one complex number.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | const double | |
| 2 | Y | const TCplx & |
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler
Overload 6: bool Bigger(const float X, const TSCplx &Y);
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | const float | |
| 2 | Y | const TSCplx & |
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler
Overload 7: bool Bigger(const double A, const double B, const double Tol = 1E-4);
Compare two real numbers.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | A | const double | |
| 2 | B | const double | |
| 3 | Tol = 1E-4 | const double |
Returns: true, if A is bigger than B within defined tolerance: |A-b| > Tol .
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler