math.atan2(y,x) 返回给定的 y 及 x 坐标值的反正切值 atan(y / x),以弧度为单位,结果是在 -pi 和 pi 之间。
math.atan2() 方法语法如下:
math.atan2(y, x)
参数说明:
返回一个浮点数,表示y 及 x 坐标值的反正切值,结果是在 -pi 和 pi 之间。
以下实例返回 y/x 的反正切:
# 导入 math 包
import math
# 输出 y/x 反正切值
print(math.atan2(8, 5))
print(math.atan2(20, 10))
print(math.atan2(34, -7))
输出结果:
1.0121970114513341
1.1071487177940904
1.7738415440483617
备案信息: 粤ICP备15087711号-2
Copyright © 2008-2024 啊嘎哇在线工具箱 All Rights.
本站所有资料来源于网络,版权归原作者所有,仅作学习交流使用,如不慎侵犯了您的权利,请联系我们。