Python cmath.atanh() 方法

实例

求复数的双曲反正切值:

  1. #为复数操作导入 cmath 库
  2. import cmath
  3. #求复数的双曲反正切值
  4. print (cmath.atanh(2+ 3j))

定义与用法

cmath.atanh() 方法返回复数的反双曲正切值。

有两个分支切口:

  • 沿实轴从 1 延伸到 ∞, 从下面延伸
  • 沿实轴从 -1 延伸到 -∞, 从上面延伸

语法

  1. cmath.atanh(x)

参数值

参数描述
x必填。求反双曲正切的一个数字

技术细节

返回值:一个 complex 值,表示复数的反双曲正切值
Python 版本:1.5

分类导航