std::expm1
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cmath> 中定义
|
||
float expm1( float arg ); |
(C++11 起) | |
double expm1( double arg ); |
(C++11 起) | |
long double expm1( long double arg ); |
(C++11 起) | |
double expm1( Integral arg ); |
(C++11 起) | |
计算“E”(欧拉数,
2.7182818
),提出给定的功率arg
,减去1。此功能更准确的表达std::exp(arg)-1如果arg
是接近零.原文:
Computes the e (Euler's number,
2.7182818
) raised to the given power arg
, minus 1. This function is more accurate than the expression std::exp(arg)-1 if arg
is close to zero.[编辑] 参数
arg | - | 浮点值
|
[编辑] 返回值
earg
-1
如果结果是过大的基础类型,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) |
自然对数(以基地“E”)1加给定数 原文: natural logarithm (to base e) of 1 plus the given number (函数) |
(C++11) |
返回“2”提出的功率(2x) 原文: returns 2 raised to the given power (2x) (函数) |