vote up 2 vote down star
1

I run into this occasionally and always forget how to do it.

One of those things that pop up ever so often.

Also, what's the formula to convert angles expressed in radians to degrees and back again?

flag

I don't see why people are downvoting this; some people aren't mathematically inclined. – thesmallprint Sep 25 '08 at 20:53
its just a matter of phrasing. I rephrased it as a programming problem instead of a math problem, and voila, it fits. – DevelopingChris Sep 25 '08 at 20:56
Excellent, I truly believe these kinds of basic questions have a place on stack overflow if it is to be the programming information portal of reckon. – Hans Sjunnesson Sep 25 '08 at 21:23

9 Answers

vote up 2 vote down check

radians = pi * (degrees/180)

As for implementation, the main question is how precise you want to be about the value of pi. There is some related discussion here

link|flag
vote up 2 vote down

a complete circle in radians is 2*pi. A complete circle in degrees is 360. To go from degrees to radians, it's (d/360) * 2*pi, or d*pi/180.

link|flag
vote up 2 vote down

x rads in degrees - > x*180/pi
x degrees in rads -> x*pi/180

I guess if you wanted to make a function for this [in PHP]:

function convert($type, $num) {
    if ($type == "rads") {
          $result = $num*180/pi();
        }

    if ($type == "degs") {
          $result = $num*pi()/180;
        }

    return $result;
  }

Yes, that could probably be written better.

link|flag
vote up 0 vote down

180 degrees = PI * radians

link|flag
No, 180 degrees = Pi. – thesmallprint Sep 25 '08 at 20:48
vote up 0 vote down

360 degrees is 2*PI radians

You can find the conversion formulas at: http://en.wikipedia.org/wiki/Radian#Conversion_between_radians_and_degrees.

link|flag
vote up 0 vote down

360 degrees = 2*pi radians

That means deg2rad(x) = x*pi/180 and rad2deg(x) = 180x/pi;

link|flag
vote up 0 vote down

pi Radians = 180 degrees

So 1 degree = pi/180 radians

or 1 radian = 180/pi degrees

link|flag
vote up 0 vote down

radians = (degrees/360) * 2 * pi

link|flag
vote up -1 vote down

I prefer to use the Google Calculator. http://www.google.com/search?q=6+radians+in+degrees&sourceid=navclient-ff&ie=UTF-8&rlz=1B3GGGL_enUS235US236&aq=t

All you have to do is type it into google and it gives you the answer. "6 radians in degrees" searched in google will give you this result.

6 radians = 343.774677 degrees

link|flag
I thinking adding a web service call to your code to have google convert radians to degrees for you is, perhaps, overkill. – nsayer Oct 9 '08 at 20:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.