Python – cmath.atanh()函数
cMath 模块包含许多用于复数数学运算的函数。 cmath.atanh()函数返回复数的反双曲反正切值。此函数中传递的值可以是int、float和复数。
Syntax: cmath.atanh(x)
Parameter:This method accepts only single parameters.
- x :This parameter is the value to be passed to atanh()
Returns:This function returns the inverse hyperbolic arctangent value of a complex number.
下面的例子说明了上述函数的使用:
示例 #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)
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.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)