Python/ref cmath atanh
来自菜鸟教程
<languages />
Python cmath.atanh()方法
例
查找复数的双曲反正切:
#import cmath for complex number operations import cmath #find the hyperbolic arctangent of a complex number print (cmath.atanh(2+ 3j))
定义和用法
The
cmath.atanh()
方法返回复数的反双曲正切值。
有两个分支切口:
- 从1沿实轴延伸到∞,从下方连续
- 沿实轴从-1延伸到-∞,从上方连续
句法
cmath.atanh(x)
参数值
参数 | 描述 |
---|---|
x | 需要。找出反双曲反正切的数字 |
技术细节
返回值: | A
|
Python版本: | 1.5 |