Python cmath.atanh() 方法
实例
求复数的双曲反正切:
#import cmath for complex number operations
import cmath
#find
the hyperbolic arctangent of a complex number
print (cmath.atanh(2+ 3j))
亲自试一试 »
定义和用法
cmath.atanh()
方法返回复数的反双曲正切。
有两个分支切割:
- 从 1 沿实轴延伸到 ∞,从下方连续
- 从 -1 沿实轴延伸到 -∞,从上方连续
语法
cmath.atanh(x)
参数值
参数 | 描述 |
---|---|
x | 必需。 一个数求反双曲反正切 |
技术细节
返回值: | 一个 complex 复数值,表示复数的反双曲正切 |
---|---|
Python 版本: | 1.5 |