首页 > 编程 > Python > 正文

Python入门之三角函数atan2()函数详解

2020-01-04 16:29:10
字体:
来源:转载
供稿:网友

描述

atan2() 返回给定的 X 及 Y 坐标值的反正切值。

语法

以下是 atan2() 方法的语法:

import mathmath.atan2(y, x)

注意:atan2()是不能直接访问的,需要导入 math 模块,然后通过 math 静态对象调用该方法。

参数

x -- 一个数值。
y -- 一个数值。

返回值

返回给定的 X 及 Y 坐标值的反正切值。

实例

以下展示了使用 atan2() 方法的实例:

#!/usr/bin/python/120408.html">python/284147.html">pythonimport mathprint "atan2(-0.50,-0.50) : ", math.atan2(-0.50,-0.50)print "atan2(0.50,0.50) : ", math.atan2(0.50,0.50)print "atan2(5,5) : ", math.atan2(5,5)print "atan2(-10,10) : ", math.atan2(-10,10)print "atan2(10,20) : ", math.atan2(10,20)

以上实例运行后输出结果为:

atan2(-0.50,-0.50) : -2.35619449019atan2(0.50,0.50) : 0.785398163397atan2(5,5) : 0.785398163397atan2(-10,10) : -0.785398163397atan2(10,20) : 0.463647609001

总结

以上就是本文关于Python入门之三角函数atan2()函数详解的全部内容,希望对大家有所帮助。有问题请留言,小编会及时回复大家的。感谢朋友们对本站的支持!


注:相关教程知识阅读请移步到python教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表