Python math.atanh() 方法
例如:
查找不同数字的双曲反正切值:
#Import math Library import math #打印不同数字的双曲反正切 print(math.atanh(0.59)) print(math.atanh(-0.12))
1、定义和用法
math.atanh()
方法返回数字的反双曲正切值。
注意:在math.atanh()
中传递的参数必须介于-0.99到0.99之间。
2、调用语法
math.atanh(x)
3、参数说明
参数 | 描述 |
x | 必需的参数, -0.99至0.99之间的正数或负数。 如果x不是数字, 则返回TypeError |
4、方法说明
返回值: |
|
Python Version: | 2.6 |