home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C!T ROM 5
/
ctrom5b.zip
/
ctrom5b
/
WINDOWS
/
DIVERSEN
/
MATHS171
/
FLIP.M
< prev
next >
Wrap
Text File
|
1993-03-23
|
216b
|
10 lines
function y = flip(x)
% y=flip(x)
% reverse the order of the argument columns AND rows
% y = fliplr(flipud(x));
% S.Halevy 7/31/92
% Copyright (c) 1992 by the MathWizards
y = fliplr(flipud(x));