X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?p=CreaPhase.git;a=blobdiff_plain;f=octave_packages%2Fmapping-1.0.7%2Frad2deg.m;fp=octave_packages%2Fmapping-1.0.7%2Frad2deg.m;h=107546d256e8c3b07d3cf7d3c6eb7a73b9216326;hp=0000000000000000000000000000000000000000;hb=f5f7a74bd8a4900f0b797da6783be80e11a68d86;hpb=1705066eceaaea976f010f669ce8e972f3734b05 diff --git a/octave_packages/mapping-1.0.7/rad2deg.m b/octave_packages/mapping-1.0.7/rad2deg.m new file mode 100644 index 0000000..107546d --- /dev/null +++ b/octave_packages/mapping-1.0.7/rad2deg.m @@ -0,0 +1,24 @@ +## Copyright (C) 2004 Andrew Collier +## +## This program is free software; it is distributed in the hope that it +## will be useful, but WITHOUT ANY WARRANTY; without even the implied +## warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See +## the GNU General Public License for more details. +## +## You should have received a copy of the GNU General Public License +## along with this file; see the file COPYING. If not, see +## . + +## -*- texinfo -*- +## @deftypefn {Function File} {} @var{anglout} = rad2deg(@var{anglin}) +## +## Converts angles input in radians to the equivalent in degrees. +## @end deftypefn + +## Author: Andrew Collier + +function anglout = rad2deg(anglin) + anglout = anglin * 180 / pi; +endfunction + +## http://www.mathworks.com/access/helpdesk/help/toolbox/map/functionlist.shtml