ldexp
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <math.h> 中定义
|
||
float ldexpf( float arg, int exp ); |
||
double ldexp( double arg, int exp ); |
||
long double ldexpl( long double arg, int exp ); |
||
arg
2乘以一个浮点值,提高电源exp
原文:
Multiplies an floating point value
arg
by 2 raised to power exp
.[编辑] 参数
arg | - | 浮点值
|
exp | - | 整数值
|
[编辑] 返回值
返回
x×2exp
如果结果是过大的基础类型,HUGE_VAL范围发生错误,则返回.
原文:
If the result is too large for the underlying type, range error occurs and HUGE_VAL is returned.
[编辑] 另请参阅
分解一个数字,位数和电源2 原文: decomposes a number into significand and a power of 2 (函数) | |
(C99) (C99) |
FLT_RADIX次方乘以一个数 原文: multiplies a number by FLT_RADIX raised to a power (函数) |
C++ documentation for ldexp
|