std::pow
Defined in header
<cmath>
|
||
float pow( float base, float exp );
|
(1) | |
double pow( double base, double exp );
|
(2) | |
long double pow( long double base, long double exp );
|
(3) | |
Promoted pow( Arithmetic base, Arithmetic exp );
|
(4) | (since C++11) |
float pow( float base, int iexp );
|
(5) | (until C++11) |
double pow( double base, int iexp );
|
(6) | (until C++11) |
long double pow( long double base, int iexp );
|
(7) | (until C++11) |
Computes the value of base
raised to the power exp
or iexp
.
4) A set of overloads or a function template for all combinations of arguments of arithmetic type not covered by 1-3). If any argument has integral type, it is cast to double. If any argument is long double, then the return type Promoted
is also long double, otherwise the return type is always double.
Contents |
[edit] Parameters
base | - | base as floating point value |
exp | - | exponent as floating point value |
iexp | - | exponent as integer value |
[edit] Return value
base
raised by power (exp
or iexp
).
Domain error occurs if base
is 0 and exp
is less than or equal to 0. NAN is returned in that case.
Domain error occurs if base
is negative and exp
is not an integer value. NAN is returned in that case.
Range error occurs if an overflow takes place. HUGEVAL is returned in that case.
[edit] Notes
pow(float, int)
returns float until C++11 (per overload 5) but returns double
since C++11 (per overload 4)
[edit] See also
returns e raised to the given power (ex) (function) |
|
computes natural (base e) logarithm (to base e) (ln(x)) (function) |
|
computes square root (√x) (function) |
|
(C++11)
|
computes cubic root (3√x) (function) |
complex power, one or both arguments may be a complex number (function template) |
|
applies the function std::pow to two valarrays or a valarray and a value (function template) |