std::pow,std::powf,std::powl (3) - Linux Manuals
std::pow,std::powf,std::powl: std::pow,std::powf,std::powl
NAME
std::pow,std::powf,std::powl - std::pow,std::powf,std::powl
Synopsis
Defined in header <cmath>
float pow ( float base, float exp );
float powf( float base, float exp ); (since C++11)
double pow ( double base, double exp ); (2)
long double pow ( long double base, long double exp );
long double powl( long double base, long double exp ); (1) (since C++11)
float pow ( float base, int iexp ); (3) (4) (until C++11)
double pow ( double base, int iexp ); (5) (until C++11)
long double pow ( long double base, int iexp ); (6) (until C++11)
Promoted pow ( Arithmetic1 base, Arithmetic2 exp ); (7) (since C++11)
1-6) Computes the value of base raised to the power exp or iexp.
7) 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.
Parameters
base - base as a value of floating-point or integral_type
exp - exponent as a value of floating-point or integral_type
iexp - exponent as integer value
Return value
If no errors occur, base raised to the power of exp (or iexp) (baseexp
), is returned.
If a domain error occurs, an implementation-defined value is returned (NaN where supported)
If a pole error or a range error due to overflow occurs, ±HUGE_VAL, ±HUGE_VALF, or ±HUGE_VALL is returned.
If a range error occurs due to underflow, the correct result (after rounding) is returned.
Error handling
Errors are reported as specified in math_errhandling.
If base is finite and negative and exp is finite and non-integer, a domain error occurs and a range error may occur.
If base is zero and exp is zero, a domain error may occur.
If base is zero and exp is negative, a domain error or a pole error may occur.
If the implementation supports IEEE floating-point arithmetic (IEC 60559),
* pow(+0, exp), where exp is a negative odd integer, returns +∞ and raises FE_DIVBYZERO
* pow(-0, exp), where exp is a negative odd integer, returns -∞ and raises FE_DIVBYZERO
* pow(±0, exp), where exp is negative, finite, and is an even integer or a non-integer, returns +∞ and raises FE_DIVBYZERO
* pow(±0, -∞) returns +∞ and may raise FE_DIVBYZERO
* pow(+0, exp), where exp is a positive odd integer, returns +0
* pow(-0, exp), where exp is a positive odd integer, returns -0
* pow(±0, exp), where exp is positive non-integer or a positive even integer, returns +0
* pow(-1, ±∞) returns 1
* pow(+1, exp) returns 1 for any exp, even when exp is NaN
* pow(base, ±0) returns 1 for any base, even when base is NaN
* pow(base, exp) returns NaN and raises FE_INVALID if base is finite and negative and exp is finite and non-integer.
* pow(base, -∞) returns +∞ for any |base|<1
* pow(base, -∞) returns +0 for any |base|>1
* pow(base, +∞) returns +0 for any |base|<1
* pow(base, +∞) returns +∞ for any |base|>1
* pow(-∞, exp) returns -0 if exp is a negative odd integer
* pow(-∞, exp) returns +0 if exp is a negative non-integer or even integer
* pow(-∞, exp) returns -∞ if exp is a positive odd integer
* pow(-∞, exp) returns +∞ if exp is a positive non-integer or even integer
* pow(+∞, exp) returns +0 for any negative exp
* pow(+∞, exp) returns +∞ for any positive exp
* except where specified above, if any argument is NaN, NaN is returned
Notes
pow(float, int) returns float until C++11 (per overload 4) but returns double since C++11 (per overload 7)
Although std::pow cannot be used to obtain a root of a negative number, std::cbrt is provided for the common case where exp is 1/3
Example
// Run this code
Possible output:
See also
sqrt
sqrtf computes square root (
sqrtl √
(C++11)
(C++11)
cbrt computes cubic root (
cbrtf 3
cbrtl √