Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function Exp10(const X: TCplx): TCplx; | 10^x function. |
| 2 | function Exp10(const X: TSCplx): TSCplx; | |
| 3 | function Exp10(const X: Double): Double; | 10^x function. |
| 4 | function Exp10f(const X: Single): Single; |
Overload 1: function Exp10(const X: TCplx): TCplx;
10^x function.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TCplx |
Returns: TCplx (complex) - Returns the value of 10 raised to the power of X.
Remarks:
This function is about 30% faster as the equivalent call to the Math387.Power routine
See Also: Math387.Power
Overload 2: function Exp10(const X: TSCplx): TSCplx;
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TSCplx |
Returns: TSCplx
Overload 3: function Exp10(const X: Double): Double;
10^x function.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | Double |
Returns: Double - Returns the value of 10 raised to the power of X.
Remarks:
This function is about 30% faster as the equivalent call to the Math387.Power routine.
Overload 4: function Exp10f(const X: Single): Single;
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | Single |
Returns: Single