/usr/share/octave/packages/mapping-1.2.1/wrapTo360.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 | ## Copyright (C) 2015 Oscar Monerris Belda
##
## 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. If not, see <http://www.gnu.org/licenses/>.
## -*- texinfo -*-
## @deftypefn {Function File} {@var{xwrap} =} wrapTo360 (@var{x})
##
## Wraps X into the [0 to 360] interval.
##
## @var{x}: angle(s) in degrees (single value, vector or ND matrix).
##
## @var{xwrap}: output value(s) in the range [0 .. 360] degrees.
## The interval [0 .. 360] is a closed interval: values equal to
## zero or negative even multiples of 360 are mapped to 0, values
## equal to an even multiple of 360 are mapped to 360.
##
## Example:
## @example
## wrapTo360 ([-720, -360, 0; 10, 360, 720])
## ans =
## 0 0 0
## 10 360 360
## @end example
##
## @seealso{wrapTo180, wrapToPi, wrapto2Pi}
## @end deftypefn
function xwrap = wrapTo360(x)
xwrap = rem (x-180, 360);
idx = find (abs (xwrap) > 180);
xwrap(idx) -= 360 * sign (xwrap(idx));
xwrap += 180;
endfunction
%!test
%! x = -800:0.1:800;
%! xw = wrapTo360 (x);
%! assert (sind (x), sind (xw), 16 * eps)
%! assert (cosd (x), cosd (xw), 16 * eps)
%! assert (! any (xw < 0))
%! assert (! any (xw > 360))
%% Test Matlab compatibility as regards closed interval (esp. left)
%!test
%! assert (wrapTo360 ([-720, -360, 0; 10, 360, 720]), ...
%! [0, 0, 0; 10, 360, 360], 1e-13);
|