Python math.atanh(x) 返回 x 的反双曲正切值。
Python 版本: 2.6
math.atanh() 方法语法如下:
math.atanh(x)
参数说明:
返回一个浮点数,表示 x 的反双曲正切值。
以下实例返回数字的双曲正切值:
# 导入 math 包 import math # 输出双曲正切值 print(math.atanh(0.59)) print(math.atanh(-0.12))
输出结果:
0.6776660677579618 -0.12058102840844402
0