Python math.atanh() 方法
实例
求不同数字的双曲正切值:
#Import math Library
import math
#print the hyperbolic arctangent of different numbers
print (math.atanh(0.59))
print (math.atanh(-0.12))
print (math.atanh(0.99))
定义与用法
math.atanh()
方法返回数字的反双曲正切。
注意:math.atanh()
中传递的参数必须介于 -0.99 到 0.99 之间。
语法
math.atanh(x)
参数值
参数 | 描述 |
---|---|
x | 必填。介于 -0.99 和 0.99 之间的正数或负数。如果 x 不是一个数字,它将返回一个 TypeError |
技术细节
返回值: | 一个 float 值,表示数字的反双曲正切 |
---|---|
Python 版本: | 2.6 |