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))
亲自试一试 »
定义和用法
math.atanh()
方法返回一个数的反双曲正切。
注释: math.atanh()
中传递的参数必须介于 -0.99 到 0.99 之间。
语法
math.atanh(x)
参数值
参数 | 描述 |
---|---|
x | 必需。 介于 -0.99 和 0.99 之间的正数或负数。 如果 x 不是数字,则返回 TypeError |
技术细节
返回值: | 一个float 值,表示一个数的反双曲正切 |
---|---|
Python 版本: | 2.6 |