Reputation: 1016
When applying rad2deg
I get
>>> np.rad2deg(4*np.pi)
720.0
An angle of 720.0
degrees is in many application equivalent to an angle of 360.0
degrees.
What's the best way to convert radians (from dtype=float64
) into degrees where the result is the correct value in [0,180]
?
Upvotes: 1
Views: 3535