📜  Python – cmath.atan()函数(1)

📅  最后修改于: 2023-12-03 15:34:06.487000             🧑  作者: Mango

Python – cmath.atan()函数

在Python中,cmath.atan()函数用于返回一个数的反正切值(以弧度为单位)。反正切值是介于-π和π之间的弧度值。

语法
cmath.atan(x)
参数
  • x:必需。一个数字或可以转换为数字的对象。
返回值

返回一个数字或者是能够转换为数字的对象的反正切值。

示例
示例1: 获取标量的反正切值
import cmath

a = 2 + 3j
print(cmath.atan(a))

输出结果

(1.4099210495965755+0.23182380450040325j)
示例2:获取列表中所有数字的反正切值
import cmath

list1 = [0,1,2,3,4,5]
list2 = [-1,-2,-3,-4,-5]

for i in list1:
  print(cmath.atan(i))

for i in list2:
  print(cmath.atan(i))

输出结果

0.0
0.7853981633974483
1.1071487177940904
1.2490457723982544
1.3258176636680326
1.373400766945015
-0.7853981633974483
-1.1071487177940904
-1.2490457723982544
-1.3258176636680326
-1.373400766945015
注意事项
  • 当输入参数为0时,返回值为0。
  • cmath.atan()函数同样适用于实数。