Home > freetb4matlab > general > fliplr.m

fliplr

PURPOSE ^

% Return a copy of @var{x} with the order of the columns reversed. For

SYNOPSIS ^

function y = fliplr (x)

DESCRIPTION ^

% -*- 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

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:
Generated on Fri 22-May-2009 15:13:00 by m2html © 2003