Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function Smaller(const X: TCplx; const Y: TCplx): Boolean; | Compares two complex numbers. |
| 2 | function Smaller(const X: TCplx; const Y: Double): Boolean; | Compare one real and one complex number. |
| 3 | function Smaller(const X: TSCplx; const Y: TSCplx): Boolean; | |
| 4 | function Smaller(const X: TSCplx; const Y: Single): Boolean; | |
| 5 | function Smaller(const X: Double; const Y: TCplx): Boolean; | Compare one real and one complex number. |
| 6 | function Smaller(const A: Double; const B: Double; const Tol: Double): Boolean; | Compare two real numbers. |
| 7 | function Smaller(const X: Single; const Y: TSCplx): Boolean; | |
| 8 | function Smallerf(const A: Single; const B: Single; const Tol: Single): Boolean; |
Overload 1: function Smaller(const X: TCplx; const Y: TCplx): Boolean;
Compares two complex numbers.
Returns: Boolean - true if X is smaller than Y. If absolute values are equal it compares the phase.
Overload 2: function Smaller(const X: TCplx; const Y: Double): Boolean;
Overload 3: function Smaller(const X: TSCplx; const Y: TSCplx): Boolean;
Overload 4: function Smaller(const X: TSCplx; const Y: Single): Boolean;
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TSCplx | |
| 2 | Y | Single |
Returns: Boolean
Overload 5: function Smaller(const X: Double; const Y: TCplx): Boolean;
Overload 6: function Smaller(const A: Double; const B: Double; const Tol: Double): Boolean;
Compare two real numbers.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | A | Double | |
| 2 | B | Double | |
| 3 | Tol | Double |
Returns: Boolean - true, if A is smaller than B within defined tolerance: |A-B| < Tol .
Overload 7: function Smaller(const X: Single; const Y: TSCplx): Boolean;
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | Single | |
| 2 | Y | TSCplx |
Returns: Boolean
Overload 8: function Smallerf(const A: Single; const B: Single; const Tol: Single): Boolean;
| # | Name | Type | Description |
|---|---|---|---|
| 1 | A | Single | |
| 2 | B | Single | |
| 3 | Tol | Single |
Returns: Boolean