home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Borland Programmer's Resource
/
Borland_Programmers_Resource_CD_1995.iso
/
utils
/
mathstud
/
flip.m
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-05-19
|
216 b
|
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));