std::exp2
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cmath> 中定义
|
||
double exp2( double n ); |
(C++11 起) | |
float exp2( float n ); |
(C++11 起) | |
long double exp2( long double n ); |
(C++11 起) | |
double exp2( Integral n ); |
(C++11 起) | |
计算2提高到给定的功率
n
原文:
Computes 2 raised to the given power
n
[编辑] 参数
n | - | 浮点值
|
[编辑] 返回值
2升高到
n
(即2n
)如果结果是过大的基本类型,范围HUGE_VAL发生错误,则返回.
原文:
If the result is too large for the underlying type, range error occurs and HUGE_VAL is returned.
[编辑] 另请参阅
返回“E”提出的功率(ex) 原文: returns e raised to the given power (ex) (函数) | |
(C++11) |
基体2的对数的给定数 原文: base 2 logarithm of the given number (函数) |
计算自然(基地“E”)对数(基地“E”)(ln(x)) 原文: computes natural (base e) logarithm (to base e) (ln(x)) (函数) | |
引起了一些给定的功率(xy) 原文: raises a number to the given power (xy) (函数) |