]> Creatis software - CreaPhase.git/blob - octave_packages/m/general/fliplr.m
update packages
[CreaPhase.git] / octave_packages / m / general / fliplr.m
1 ## Copyright (C) 1993-2012 John W. Eaton
2 ##
3 ## This file is part of Octave.
4 ##
5 ## Octave is free software; you can redistribute it and/or modify it
6 ## under the terms of the GNU General Public License as published by
7 ## the Free Software Foundation; either version 3 of the License, or (at
8 ## your option) any later version.
9 ##
10 ## Octave is distributed in the hope that it will be useful, but
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 ## General Public License for more details.
14 ##
15 ## You should have received a copy of the GNU General Public License
16 ## along with Octave; see the file COPYING.  If not, see
17 ## <http://www.gnu.org/licenses/>.
18
19 ## -*- texinfo -*-
20 ## @deftypefn {Function File} {} fliplr (@var{x})
21 ## Return a copy of @var{x} with the order of the columns reversed.  In
22 ## other words, @var{x} is flipped left-to-right about a vertical axis.  For
23 ## example:
24 ##
25 ## @example
26 ## @group
27 ## fliplr ([1, 2; 3, 4])
28 ##      @result{}  2  1
29 ##          4  3
30 ## @end group
31 ## @end example
32 ##
33 ## Note that @code{fliplr} only works with 2-D arrays.  To flip N-D arrays
34 ## use @code{flipdim} instead.
35 ## @seealso{flipud, flipdim, rot90, rotdim}
36 ## @end deftypefn
37
38 ## Author: jwe
39
40 function y = fliplr (x)
41
42   if (nargin != 1)
43     print_usage ();
44   endif
45
46   if (ndims (x) > 2)
47     error ("fliplr: Only works with 2-D arrays");
48   endif
49
50   nc = columns (x);
51   y = x (:, nc:-1:1);
52
53 endfunction
54
55 %!assert((fliplr ([1, 2; 3, 4]) == [2, 1; 4, 3]
56 %! && fliplr ([1, 2; 3, 4; 5, 6]) == [2, 1; 4, 3; 6, 5]
57 %! && fliplr ([1, 2, 3; 4, 5, 6]) == [3, 2, 1; 6, 5, 4]));
58
59 %!error fliplr();
60
61 %!error fliplr (1, 2);
62