Python Math atan2() 函数
Python Math atan2() 返回给定的 X 及 Y 坐标值的反正切值。
Python Math atan2() 语法
以下是 atan2() 方法的语法:
import math
math.atan2(y, x)
注意:atan2()是不能直接访问的,需要导入 math 模块,然后通过 math 静态对象调用该方法。
Python Math atan2() 参数
- x : 一个数值。
- y : 一个数值。
Python Math atan2() 返回值
返回给定的 X 及 Y 坐标值的反正切值。
Python Math atan2() 示例1
以下展示了使用 atan2() 方法的实例:
#!/usr/bin/python3
import math
print ("atan2(-0.50,-0.50) : ", math.atan2(-0.50,-0.50))
print ("atan2(0.50,0.50) : ", math.atan2(0.50,0.50))
print ("atan2(50,50) : ", math.atan2(50,50))
print ("atan2(-100,100) : ", math.atan2(-100,100))
print ("atan2(100,200) : ", math.atan2(100,200))
输出:
Python Math atan2() 示例2
当整数值被传递时,它会返回一个TypeError
#!/usr/bin/python3
import math
y, x = 3, 6
theta = math.atan2([y], [x])
print(theta)
输出: