From: Matt Fig on
NouveauIX <visualxd(a)gmail.com> wrote in message <
>...... I'm not sure if they're correct.



Well, why not try it for yourself?

A = magic(9)
A(1:2:end,:)=[] % Remove odd ROWS
% Did it work?

A = magic(9)
A(:,1:2:end)=[] % Remove odd COLUMNS
% Did it work?


Now for the even case, give it a try!