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))
1、定义和用法
math.atan2()
方法以弧度返回y/x的反正切。 其中x和y是点(x,y)的坐标。
返回值在PI和-PI之间。
2、调用语法
math.atan2(y, x)
3、参数说明
参数 | 描述 |
y | 必需的参数。 指定正数或负数 |
x | 必需的参数。 指定正数或负数 |
4、方法说明
返回值: |
|
Python Version: | 1.4 |