Python math.atan2() 函数
Python math.atan2() 返回给定的 X 及 Y 坐标值的反正切值
导入模块
import math
语法
math.atan2(y, x)
参数
参数 | 说明 |
---|---|
x | 一个数值 |
y | 一个数值 |
返回值
返回给定的 X 及 Y 坐标值的反正切值
范例
下面的代码使用 math.atan2() 函数返回一些坐标值的反正切
>>> import math >>> math.atan2(-0.5,-0.5) -2.356194490192345 >>> math.atan2(0.5,0.5) 0.7853981633974483 >>> math.atan2(5,5) 0.7853981633974483 >>> math.atan2(-10,10) -0.7853981633974483 >>> math.atan2(10,20) 0.4636476090008061