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