您好,登錄后才能下訂單哦!
小編這次要給大家分享的是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進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。