Overload List
| # | Signature | Description |
|---|---|---|
| 1 | double IntPower(const double Base, const int Exponent); | Power function (integer power). |
| 2 | TCplx IntPower(const TCplx &Base, const int N); | Power function (integer power). |
| 3 | TSCplx IntPower(const TSCplx &Base, const int N); |
Overload 1: double IntPower(const double Base, const int Exponent);
Power function (integer power).
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Base | const double | |
| 2 | Exponent | const int |
Returns: Base to an integer power N.
Remarks:
Try to avoid calling this function for small powers. N can also be negative.
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler
Overload 2: TCplx IntPower(const TCplx &Base, const int N);
Power function (integer power).
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Base | const TCplx & | |
| 2 | N | const int |
Returns: 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
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler
Overload 3: TSCplx IntPower(const TSCplx &Base, const int N);
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Base | const TSCplx & | |
| 2 | N | const int |
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler