std::log
来自cppreference.com
![]() |
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
定义于头文件 <cmath>
|
||
float log( float arg ); |
||
double log( double arg ); |
||
long double log( long double arg ); |
||
double log( Integral arg ); |
(C++11 起) | |
Computes the natural (base e) logarithm of arg
.
目录 |
[编辑] 参数
arg | - |
[编辑] 返回值
natural logarithm of arg
.
域时会出现错误
arg
为负。 NAN是在这种情况下,返回.[编辑] 示例
The following code computes the binary (base 2) logarithm with help of natural logarithm.
#include <cmath> #include <iostream> int main() { double base = 2.0; double arg = 256.0; double result = std::log(arg) / std::log(base); std::cout << result << '\n'; }
输出:
8
[编辑] 另请参阅
(函数) | |
计算常用对数(以“10”为底)(log10(x)) (函数) | |
(函数) | |
沿负实轴割线的复数的自然对数 (函数模板) | |
在valarray的每个元素上调用std::log函数 (函数模板) |