1 | initial version |
There's currently no way in Sage to do something like:
sage: angle_measurements('degrees')
sage: sin(90)
1
sage: arcsin(1)
90
At the moment, your best best is to either manually multiply/divide by 180/pi
or write wrapper functions for the trig functions which do the conversions for you.