Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function Exp2(const X: TCplx): TCplx; | 2^x function. |
| 2 | function Exp2(const X: TSCplx): TSCplx; | |
| 3 | function Exp2(const X: Double): Double; | 2^x function. |
| 4 | function Exp2f(const X: Single): Single; |
Overload 1: function Exp2(const X: TCplx): TCplx;
2^x function.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TCplx |
Returns: TCplx (complex) - Returns the value of 2 raised to the power of X.
See Also: Math387.Power
Overload 2: function Exp2(const X: TSCplx): TSCplx;
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TSCplx |
Returns: TSCplx
Overload 3: function Exp2(const X: Double): Double;
2^x function.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | Double |
Returns: Double - Returns the value of 2 raised to the power of X.
Remarks:
This function is twice as fast as the equivalent call to the Math387.Power function.
Overload 4: function Exp2f(const X: Single): Single;
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | Single |
Returns: Single