Matrix elements movement in MATLAB
1 回表示 (過去 30 日間)
古いコメントを表示
HI, I want to move the matrix elements as desired like
a=[1 2 3 4;
5 6 7 8;
9 10 11 12;
13 14 15 16]
now i want to make it
a=[3 4 8 7;
11 12 16 15;
14 13 9 10;
6 5 1 2]
how can i do it in MATLAB
0 件のコメント
回答 (1 件)
Azzi Abdelmalek
2014 年 2 月 19 日
編集済み: Azzi Abdelmalek
2014 年 2 月 19 日
a=[1 2 3 4;
5 6 7 8;
9 10 11 12;
13 14 15 16]
n=size(a,2);
n2=n/2;
a1=a(:,n2+1:n);
a2=a(:,1:n2);
a1(2:2:end,:)=fliplr(a1(2:2:end,:))
a2(2:2:end,:)=fliplr(a2(2:2:end,:))
a2=flipud(a2)
out=reshape([a1' a2'],n,[])'
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!