Reshape an array into another
1 次查看(过去 30 天)
显示 更早的评论
Hi everybody, I have an array like this:
1 2 3 4 5 6 7 8
9 10 11 12 13 14 15 16
17 18 19 20 21 22 23 24
25 26 27 28 29 30 31 32
how can i permute the array in another like this?:
1 2 3 4
9 10 11 12
17 18 19 20
25 26 27 28
5 6 7 8
13 14 15 16
21 22 23 24
29 30 31 32
Thank you so much!
0 个评论
采纳的回答
Omer Yasin Birey
2019-1-29
编辑:Omer Yasin Birey
2019-1-29
a = [1 2 3 4 5 6 7 8;...
9 10 11 12 13 14 15 16;...
17 18 19 20 21 22 23 24;...
25 26 27 28 29 30 31 32];
a = [a(:,1:end/2);a(:,end/2+1:end)]
0 个评论
更多回答(1 个)
KSSV
2019-1-29
A = [1 2 3 4 5 6 7 8
9 10 11 12 13 14 15 16
17 18 19 20 21 22 23 24
25 26 27 28 29 30 31 32];
C = [A(:,1:4) ; A(:,5:end)] ;
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!