Python math.atan2() 方法
实例
以弧度为单位返回y/x的反正切:
# Import math Library
import math
# Return the arc tangent of y/x in radians
print(math.atan2(8, 5))
print(math.atan2(20, 10))
print(math.atan2(34, -7))
print(math.atan2(-340, -120))
定义与用法
math.atan2()
方法返回 y/x 的反正切,单位为弧度。其中 x 和 y 是点(x,y)的坐标。
返回值介于 PI 和 -PI 之间。
语法
math.atan2(y, x)
参数值
参数 | 描述 |
---|---|
y | 必填。指定正数或负数 |
x | 必填。指定正数或负数 |
技术细节
返回值: | 一个 float 值,以弧度表示 y/x 的反正切,该值介于 PI 和 -PI 之间 |
---|---|
Python 版本: | 1.4 |