python弧度转角度

角度转为弧度

import math
math.radians(x)

 

弧度转为角度

import math
math.degrees(x)

例如:

已知:tan(45°)=1

那么:

math.degrees(np.arctan2(1,1))
45.0

math.degrees(math.atan(1))
45.0

 

posted on 2022-05-20 15:30  一杯明月  阅读(966)  评论(0编辑  收藏  举报