Python math.expm1() 方法
定义和用法
math.expm1()
方法返回 Ex - 1。
'E' 是自然对数系统的底数(大约为 2.718282),x 是传递给它的数字。
此函数比调用 math.exp()
然后减去 1 更准确。
语法
math.expm1(x)
参数值
参数 | 描述 |
---|---|
x | 必需。指定指数 |
技术细节
返回值 | 一个 float 值,表示 Ex - 1 |
---|---|
Python 版本 | 2.7 |
math.expm1()
方法返回 Ex - 1。
'E' 是自然对数系统的底数(大约为 2.718282),x 是传递给它的数字。
此函数比调用 math.exp()
然后减去 1 更准确。
math.expm1(x)
参数 | 描述 |
---|---|
x | 必需。指定指数 |
返回值 | 一个 float 值,表示 Ex - 1 |
---|---|
Python 版本 | 2.7 |
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]