您好,登录后才能下订单哦!
小编这次要给大家分享的是python如何实现弧度与角度互转,文章内容丰富,感兴趣的小伙伴可以来了解一下,希望大家阅读完这篇文章之后能够有所收获。
我就废话不多说了,还是直接看代码吧!
import math def deal(yaw): if(yaw<0): print(-(abs(yaw)/math.pi)*180) print(math.degrees(yaw)) else: print((abs(yaw)/math.pi)*180) print(math.degrees(yaw)) yaw=math.pi/6 deal(yaw) yaw=-math.pi/3 deal(yaw)
输出
30.0 29.999999999999996 -60.0 -59.99999999999999
补充知识:MATLAB中角度转换成弧度函数——degtorad
degtorad
Convert angles from degrees to radians
将角度从度数转换为弧度
Syntax:angleInRadians = degtorad(angleInDegrees)
语法:弧度 = degtorad(角度)
Description
angleInRadians = degtorad(angleInDegrees) converts angle units from degrees to radians. This is both an angle conversion function and a distance conversion function, since arc length can be a measure of distance in either radians or degrees, provided that the radius is known.
描述:angleInRadians = degtorad(angleInDegrees)将角度单位从度数转换为弧度。这是角度转换函数和距离转换函数,因为弧长可以是弧度或度数的距离的度量,只要半径是已知的。
Examples
Show that there are 2π radians in a full circle: 2*pi - degtorad(360) ans = 0
例子
显示整个圆圈内有2π弧度:
看完这篇关于python如何实现弧度与角度互转的文章,如果觉得文章内容写得不错的话,可以把它分享出去给更多人看到。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。