<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154258</link>
    <title>MATLAB Central Newsreader - Does Matlab have a function that converts degrees to radians?</title>
    <description>Feed for thread: Does Matlab have a function that converts degrees to radians?</description>
    <language>en-us</language>
    <copyright>&amp;copy;1994-2008 by The MathWorks, Inc.</copyright>
    <webmaster>webmaster@mathworks.com</webmaster>
    <generator>MATLAB Central Newsreader</generator>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <ttl>60</ttl>
    <image>
      <title>The MathWorks</title>
      <url>http://www.mathworks.com/images/membrane_icon.gif</url>
    </image>
    <item>
      <pubDate>Thu, 09 Aug 2007 14:49:00 -0400</pubDate>
      <title>Does Matlab have a function that converts degrees to radians?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154258#387020</link>
      <author>David </author>
      <description>Does Matlab have a function that converts degrees to &lt;br&gt;
radians?&lt;br&gt;
&lt;br&gt;
I searched the help but couldn't find anything.&lt;br&gt;
&lt;br&gt;
DS&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Thu, 09 Aug 2007 14:58:39 -0400</pubDate>
      <title>Re: Does Matlab have a function that converts degrees to radians?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154258#387025</link>
      <author>dpb</author>
      <description>David wrote:&lt;br&gt;
&amp;gt; Does Matlab have a function that converts degrees to &lt;br&gt;
&amp;gt; radians?&lt;br&gt;
&lt;br&gt;
Don't believe there's a builtin in function/constant but since it's &lt;br&gt;
simply 180 degrees--&amp;gt; pi radians a simple one-liner would do it.  It's &lt;br&gt;
convenient that pi is a supplied constant in that regard.&lt;br&gt;
&lt;br&gt;
--&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Thu, 09 Aug 2007 15:06:08 -0400</pubDate>
      <title>Re: Does Matlab have a function that converts degrees to radians?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154258#387029</link>
      <author>someone </author>
      <description>"David " &amp;lt;david_m_spinella@yahoo.com&amp;gt; wrote in message &lt;br&gt;
&amp;lt;f9f9gs$fve$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; Does Matlab have a function that converts degrees to &lt;br&gt;
&amp;gt; radians?&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; I searched the help but couldn't find anything.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; DS&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
You can write your own one liner:&lt;br&gt;
&lt;br&gt;
function y = deg2rad(x)&lt;br&gt;
y = x * pi/180;&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
also there is sind vice sin, cosd vice cos, etc.&lt;br&gt;
&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Thu, 09 Aug 2007 16:59:08 -0400</pubDate>
      <title>Re: Does Matlab have a function that converts degrees to radians?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154258#387061</link>
      <author>Allen</author>
      <description>David wrote:&lt;br&gt;
&amp;gt; Does Matlab have a function that converts degrees to &lt;br&gt;
&amp;gt; radians?&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; I searched the help but couldn't find anything.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; DS&lt;br&gt;
&lt;br&gt;
?  I may be missing something.. but won't deg2rad(); work?  And &lt;br&gt;
rad2deg(); conversely?&lt;br&gt;
&lt;br&gt;
-Allen&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Thu, 09 Aug 2007 17:02:51 -0400</pubDate>
      <title>Re: Does Matlab have a function that converts degrees to radians?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154258#387062</link>
      <author>Allen</author>
      <description>David wrote:&lt;br&gt;
&amp;gt; Does Matlab have a function that converts degrees to &lt;br&gt;
&amp;gt; radians?&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; I searched the help but couldn't find anything.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; DS&lt;br&gt;
&lt;br&gt;
Crap, deg2rad is part of the mapping toolbox... sorry!!&lt;br&gt;
&lt;br&gt;
There is this file in the mathworks file area:&lt;br&gt;
&lt;br&gt;
&lt;a href="http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=3263"&gt;http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=3263&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
submitted by Richard Medlock&lt;br&gt;
&lt;br&gt;
If the above link doesn't work search for degrees and radians.&lt;br&gt;
&lt;br&gt;
Hope this helps,&lt;br&gt;
-Allen&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Thu, 09 Aug 2007 17:04:53 -0400</pubDate>
      <title>Re: Does Matlab have a function that converts degrees to radians?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154258#387063</link>
      <author>us</author>
      <description>Allen:&lt;br&gt;
&amp;lt;SNIP OP has an angular conversion problem...&lt;br&gt;
&lt;br&gt;
&amp;gt; I may be missing something.. but won't deg2rad(); work?  &lt;br&gt;
And rad2deg(); conversely...&lt;br&gt;
&lt;br&gt;
yes, if(f) the OP has the &amp;lt;mapping tbx&amp;gt;... that they are &lt;br&gt;
part of...&lt;br&gt;
&lt;br&gt;
us&lt;br&gt;
</description>
    </item>
  </channel>
</rss>
