std::pow

From cppreference.com
 
 
 
Common mathematical functions
Functions
Basic operations
remainder (C++11)
remquo (C++11)
fma (C++11)
fmax (C++11)
fmin (C++11)
fdim (C++11)
nan
nanf
nanl
(C++11)
(C++11)
(C++11)
Exponential functions
exp
exp2 (C++11)
expm1 (C++11)
log
log10
log1p (C++11)
log2 (C++11)
Power functions
sqrt
cbrt (C++11)
hypot (C++11)
pow
Trigonometric and hyperbolic functions
sinh
cosh
tanh
asinh (C++11)
acosh (C++11)
atanh (C++11)
Error and gamma functions
erf (C++11)
erfc (C++11)
lgamma (C++11)
tgamma (C++11)
Nearest integer floating point operations
ceil
floor
round
lround
llround
(C++11)
(C++11)
(C++11)
trunc (C++11)
nearbyint (C++11)
rint
lrint
llrint
(C++11)
(C++11)
(C++11)
Floating point manipulation functions
ldexp
scalbn
scalbln
(C++11)
(C++11)
ilogb (C++11)
logb (C++11)
frexp
modf
nextafter
nexttoward
(C++11)
(C++11)
copysign (C++11)
Classification
fpclassify (C++11)
isfinite (C++11)
isinf (C++11)
isnan (C++11)
isnormal (C++11)
signbit (C++11)
Macro constants
FP_NORMAL
FP_SUBNORMAL
FP_ZERO
FP_INFINITE
FP_NAN
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
FLT_EVAL_METHOD (C++11)
 
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 (3x)
(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)