📜  Python – cmath.acos()函数

📅  最后修改于: 2022-05-13 01:54:58.762000             🧑  作者: Mango

Python – cmath.acos()函数

cMath 模块包含许多用于复数数学运算的函数。 c math.acos()函数返回一个复数的反余弦值。在此函数中传递的值可以是int floatcomplex numbers

下面的例子说明了上述函数的使用:

Example #1 :在这个例子中,我们可以看到通过使用cmath.acos() 方法,我们可以通过传递任何值来获得反余弦值。

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


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


输出:

-1.762747174039086j

示例 2:

Python3

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

输出:

(1.1961255219693696-2.3830308809003258j)