std::scalbn, std::scalbln
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cmath> 中定义
|
||
float scalbn( float x, int exp ); |
(C++11 起) | |
double scalbn( double x, int exp ); |
(C++11 起) | |
long double scalbn( long double x, int exp ); |
(C++11 起) | |
double scalbn( Integral x, int exp ); |
(C++11 起) | |
float scalbln( float x, long exp ); |
(C++11 起) | |
double scalbln( double x, long exp ); |
(C++11 起) | |
long double scalbln( long double x, long exp ); |
(C++11 起) | |
double scalbln( Integral x, long exp ); |
(C++11 起) | |
乘以一个浮点值
x
FLT_RADIX提高电源exp
。在双星系统,它是相当于ldexp()
原文:
Multiplies an floating point value
x
by FLT_RADIX raised to power exp
. On binary system it is equivalent to ldexp()
[编辑] 参数
arg | - | 浮点值
|
exp | - | 整数值
|
[编辑] 返回值
返回
x×FLT_RADIXexp
如果结果是过大的基础类型,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 (函数) | |
2次方乘以一个数 原文: multiplies a number by 2 raised to a power (函数) |