Mercurial > hg > octave-nkf
view scripts/general/flipdim.m @ 5428:2a16423e4aa0
[project @ 2005-08-23 18:38:27 by jwe]
author | jwe |
---|---|
date | Tue, 23 Aug 2005 18:38:28 +0000 |
parents | 4c8a2e4e0717 |
children | 2618a0750ae6 |
line wrap: on
line source
## Copyright (C) 2004 David Bateman ## ## This file is part of Octave. ## ## Octave 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 2, or (at your option) ## any later version. ## ## Octave 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 Octave; see the file COPYING. If not, write to the Free ## Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA ## 02110-1301, USA. ## -*- texinfo -*- ## @deftypefn {Function File} {} flipdim (@var{x}, @var{dim}) ## Return a copy of @var{x} flipped about the dimension @var{dim}. ## For example ## ## @example ## @group ## flipdim ([1, 2; 3, 4], 2) ## @result{} 2 1 ## 4 3 ## @end group ## @end example ## @end deftypefn ## ## @seealso{fliplr, flipud, rot90 and rotdim} ## Author: David Bateman function y = flipdim (x, dim) if (nargin != 1 && nargin != 2) usage ("flipdim (x, dim)"); endif nd = ndims (x); sz = size (x); if (nargin == 1) ## Find the first non-singleton dimension. dim = 1; while (dim < nd + 1 && sz(dim) == 1) dim = dim + 1; endwhile if (dim > nd) dim = 1; endif else if (! (isscalar (dim) && dim == round (dim)) && dim > 0 && dim < (nd + 1)) error ("flipdim: dim must be an integer and valid dimension"); endif endif idx = cell (); for i = 1:nd idx{i} = 1:sz(i); endfor idx{dim} = sz(dim):-1:1; y = x(idx{:}); endfunction