Python – cmath.acosh()函数
cMath 模块包含许多用于复数数学运算的函数。 cmath.acosh()函数返回复数的反双曲余弦值。此函数中传递的值可以是int、float和复数。
Syntax: cmath.acosh(x)
Parameter:This method accepts only single parameters.
- x :This parameter is the value to be passed to acosh()
Returns:This function returns the inverse hyperbolic value of a complex number.
下面的例子说明了上述函数的使用:
Example #1 :在这个例子中,我们可以看到通过使用cmath.acosh()方法,我们能够得到反双曲线的值 通过将任何值传递给它。
Python3
# Python code to implement
# the acosh()function
# importing "cmath"
# for mathematical operations
import cmath
# using cmath.acosh() method
val = cmath.acosh(3)
print(val)
Python3
# Python code to implement
# the acosh()function
# importing "cmath"
# for mathematical operations
import cmath
# using cmath.acosh() method
val = cmath.acosh(2 + 5j)
print(val)
输出:
(1.762747174039086+0j)
示例 2:
Python3
# Python code to implement
# the acosh()function
# importing "cmath"
# for mathematical operations
import cmath
# using cmath.acosh() method
val = cmath.acosh(2 + 5j)
print(val)
输出:
(2.3830308809003258+1.1961255219693696j)