/usr/share/octave/packages/mapping-1.2.1/fromDegrees.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{a1}, @var{a2}, @dots{}] =} fromDegrees (@var{toUnit}, @var{deg1}, @var{deg2}, @dots{})
## Convert angles from radians.
##
## Converts any number of input arguments, @var{deg1}, @var{deg2}, @dots{}
## with angles in degrees, into @var{toUnit} which may be @qcode{"radians"} or
## @qcode{"degrees"}.
##
## @example
## @group
## [a1, a2] = fromDegrees ("radians", 180, [180 360])
## @result{a1} [ 3.1416 ]
## @result{a2} [ 3.1416 6.2832 ]
## @end group
## @end example
##
## @seealso{deg2rad, fromRadians, toDegrees, toRadians, unitsratio}
## @end deftypefn
## Author: Carnë Draug <carandraug@octave.org>
function varargout = fromDegrees (toUnit, varargin)
if (nargin < 1)
print_usage ();
endif
valid_unit = validatestring (toUnit, {"radians", "degrees"}, "fromDegrees", "TOUNIT");
switch (valid_unit(1))
case {"r"}
varargout = cellfun (@deg2rad, varargin, "UniformOutput", false);
case {"d"}
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 (fromDegrees ("degrees", deg{i}), deg{i})
%! assert (fromDegrees ("radians", deg{i}), rad{i})
%! endfor
%!
%! ## test multiple angles same time
%! assert (nthargout (1:3, @fromDegrees, "radians", deg{:}), rad)
%! assert (nthargout (1:2, @fromDegrees, "radians", deg{:}), rad(1:2))
%!
%! ## test abbreviations of degrees
%! assert (nthargout (1:3, @fromDegrees, "radian", deg{:}), rad)
%! assert (nthargout (1:3, @fromDegrees, "rad", deg{:}), rad)
%! assert (nthargout (1:3, @fromDegrees, "r", deg{:}), rad)
%!error fromDegrees ("INVALID")
|