std::log2
来自cppreference.com
![]() |
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
定义于头文件 <cmath>
|
||
float log2( float arg ); |
(C++11 起) | |
double log2( double arg ); |
(C++11 起) | |
long double log2( long double arg ); |
(C++11 起) | |
double log2( Integral arg ); |
(C++11 起) | |
[编辑] 参数
arg | - |
[编辑] 返回值
log
2(arg)
域时会出现错误
arg
为负。 NAN是在这种情况下,返回.[编辑] 另请参阅
计算自然对数(以“E”为底)(ln(x)) (函数) | |
(C++11) |
(函数) |
计算常用对数(以“10”为底)(log10(x)) (函数) |