当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python cmath.atanh()用法及代码示例


cMath模块包含许多函数,这些函数用于对复数进行数学运算。 cmath.atanh()函数返回复数的反双曲反正切值。在此函数中传递的值可以是int,float和复数。

用法: cmath.
阿坦(X)

参数:此方法仅接受单个参数。

  • x:此参数是要传递给的值atanh()

返回值:此函数返回复数的反双曲反正切值。

以下示例说明了上述函数的用法:

范例1:在此示例中,我们可以看到,通过使用cmath.atanh()方法,我们可以通过将反双曲反正切值传递给任何值来获得反双曲正切值。

Python3

# Python code to implement 
# the atanh()function 
        
# importing "cmath" 
# for mathematical operations   
import cmath  
    
# using cmath.atanh() method  
val = cmath.atanh(3)  
    
print(val)

输出:

(0.34657359027997264+1.5707963267948966j)

范例2:

Python3

# Python code to implement 
# the atanh()function 
        
# importing "cmath" 
# for mathematical operations   
import cmath  
    
# using cmath.atanh() method  
val = cmath.atanh(2 + 5j)  
    
print(val)

输出:

(0.06706599664866984+1.399284356584545j)

相关用法


注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 Python – cmath.atanh() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。