Re: [sage-support] How to compute the inverse tangent of an angle in degrees?

2015-09-27 Thread avi kaur
On Sunday, September 27, 2015 at 10:22:14 PM UTC+5:30, David Joyner wrote: > > > > sage: atan_deg = lambda x: RR(atan(x)*180/pi) > sage: atan_deg(1) > 45.0 > Thank you :) -- Avi -- You received this message because you are subscribed to the Google Groups "sage-support" group. T

Re: [sage-support] How to compute the inverse tangent of an angle in degrees?

2015-09-27 Thread David Joyner
On Sun, Sep 27, 2015 at 12:47 PM, avi kaur wrote: > Hi > > There is function in octave to calculate the inverse tangent of an > angle in degrees i.e. atand(). I did not find any function related to > this in sage. I have to compute it. I tried following in octave: > > octave:1> phiPrime = atand(0.

[sage-support] How to compute the inverse tangent of an angle in degrees?

2015-09-27 Thread avi kaur
Hi There is function in octave to calculate the inverse tangent of an angle in degrees i.e. atand(). I did not find any function related to this in sage. I have to compute it. I tried following in octave: octave:1> phiPrime = atand(0.67) phiPrime = 33.822 and in sage it tried sage: phiPrime =