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