/usr/share/octave/packages/mapping-1.2.1/toRadians.m is in octave-mapping 1.2.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | ## Copyright (C) 2014 Carnë Draug <carandraug@octave.org>
##
## This program is free software; you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 3 of the License, or (at
## your option) any later version.
##
## This program 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 program; see the file COPYING. If not, see
## <http://www.gnu.org/licenses/>.
## -*- texinfo -*-
## @deftypefn {Function File} {[@var{rad1}, @var{rad2}, @dots{}] =} toRadians (@var{toUnit}, @var{a1}, @var{a2}, @dots{})
## Convert angles into radians.
##
## Converts any number of input arguments, @var{a1}, @var{a2}, @dots{}
## with angles in @var{fromUnit}, into radians. @var{fromUnit} may be
## @qcode{"radians"} or @qcode{"degrees"}.
##
## @example
## @group
## [rad1, rad2] = toRadians ("degrees", 180, [180 360])
## @result{rad1} [ 3.1416 ]
## @result{rad2} [ 3.1416 6.2832 ]
## @end group
## @end example
##
## @seealso{deg2rad, fromDegrees, fromRadians, toDegrees, unitsratio}
## @end deftypefn
## Author: Carnë Draug <carandraug@octave.org>
function varargout = toRadians (fromUnit, varargin)
if (nargin < 1)
print_usage ();
endif
valid_unit = validatestring (fromUnit, {"radians", "degrees"}, "toRadians", "FROMUNIT");
switch (valid_unit(1))
case {"d"}
varargout = cellfun (@deg2rad, varargin, "UniformOutput", false);
case {"r"}
varargout = varargin;
endswitch
endfunction
%!test
%! rad{1} = pi;
%! rad{2} = [pi 2*pi];
%! rad{3} = [0 pi; 2*pi 0];
%! deg{1} = 180;
%! deg{2} = [180 360];
%! deg{3} = [0 180; 360 0];
%! for i=1:3
%! assert (toRadians ("degrees", deg{i}), rad{i})
%! assert (toRadians ("radians", rad{i}), rad{i})
%! endfor
%!
%! ## test multiple angles same time
%! assert (nthargout (1:3, @toRadians, "degrees", deg{:}), rad)
%! assert (nthargout (1:2, @toRadians, "degrees", deg{:}), rad(1:2))
%!
%! ## test abbreviations of degrees
%! assert (nthargout (1:3, @toRadians, "degree", deg{:}), rad)
%! assert (nthargout (1:3, @toRadians, "deg", deg{:}), rad)
%! assert (nthargout (1:3, @toRadians, "d", deg{:}), rad)
%!error toRadians ("INVALID")
|