Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TCplx IntPower(TCplx Base, Int32 N) | Power function (integer power). |
| 2 | TSCplx IntPower(TSCplx Base, Int32 N) | |
| 3 | Double IntPower(Double Base, Int32 Exponent) | Power function (integer power). |
| 4 | Single IntPowerf(Single Base, Int32 Exponent) |
Overload 1: TCplx IntPower(TCplx Base, Int32 N)
Power function (integer power).
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Base | TCplx | scalar |
| 2 | N | Int32 |
Returns: TCplx (complex) - Returns complex Base to an integer power N.
Remarks:
Try to avoid calling this function for small powers. N can also be negative.
See Also: Math387.Power
Overload 2: TSCplx IntPower(TSCplx Base, Int32 N)
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Base | TSCplx | scalar |
| 2 | N | Int32 |
Returns: TSCplx
Overload 3: Double IntPower(Double Base, Int32 Exponent)
Power function (integer power).
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Base | Double | scalar |
| 2 | Exponent | Int32 |
Returns: Double - Base to an integer power N.
Remarks:
Try to avoid calling this function for small powers. N can also be negative.
Overload 4: Single IntPowerf(Single Base, Int32 Exponent)
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Base | Single | scalar |
| 2 | Exponent | Int32 |
Returns: Single