


% -*- texinfo -*-
% @deftypefn {Function File} {} fliplr (@var{x})
% Return a copy of @var{x} with the order of the columns reversed. For
% example,
%
% @example
% @group
% fliplr ([1, 2; 3, 4])
% @result{} 2 1
% 4 3
% @end group
% @end example
%
% Note that @code{fliplr} only work with 2-D arrays. To flip N-d arrays
% use @code{flipdim} instead.
% @seealso{flipud, flipdim, rot90, rotdim}
% @end deftypefn