Python math.atanh() 方法

实例

求不同数字的双曲正切值:

  1. #Import math Library
  2. import math
  3. #print the hyperbolic arctangent of different numbers
  4. print (math.atanh(0.59))
  5. print (math.atanh(-0.12))
  6. print (math.atanh(0.99))

定义与用法

math.atanh() 方法返回数字的反双曲正切。

注意:math.atanh() 中传递的参数必须介于 -0.99 到 0.99 之间。


语法

  1. math.atanh(x)

参数值

参数描述
x必填。介于 -0.99 和 0.99 之间的正数或负数。如果 x 不是一个数字,它将返回一个 TypeError

技术细节

返回值:一个 float 值,表示数字的反双曲正切
Python 版本:2.6

分类导航