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
角度转为弧度
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