std::ldexp
From cppreference.com
| Defined in header
<cmath>
|
||
| float ldexp( float x, int exp );
|
||
| double ldexp( double x, int exp );
|
||
| long double ldexp( long double x, int exp );
|
||
| double ldexp( Integral x, int exp );
|
(since C++11) | |
Multiplies a floating point value x by 2 raised to power exp.
[edit] Parameters
| x | - | floating point value |
| exp | - | integer value |
[edit] Return value
returns x × 2exp
If the result is too large for the underlying type, range error occurs and HUGE_VAL is returned.
[edit] See also
| decomposes a number into significand and a power of 2 (function) |
|
| (C++11)(C++11)
|
multiplies a number by FLT_RADIX raised to a power (function) |
|
C documentation for ldexp
|
|