Python/ref math atan2
来自菜鸟教程
<languages />
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))
定义和用法
The
math.atan2()
方法以弧度返回y / x的反正切。其中x和y是点(x,y)的坐标。
返回值在PI和-PI之间。
句法
math.atan2(y, x)
参数值
参数 | 描述 |
---|---|
y | 需要。指定正数或负数 |
x | 需要。指定正数或负数 |
技术细节
返回值: | A
|
Python版本: | 1.4 |