gusucode.com > 《精通matlab 7》包括配套光盘 > 配套光盘里的程序附件/Ex-03/Ex0326.m

    %例3-26 数组翻转
A=rand(4,6)
flipud(A)
fliplr(A)
flipdim(A,2)
rot90(A)
rot90(A,2)