Rearranging Array Rows into Multiple Blocks while Maintaining the Old Order
2 ビュー (過去 30 日間)
古いコメントを表示
How can I rearrange an array from alternating rows to multiple blocks, maintaining the order of the rows?
2 件のコメント
madhan ravi
2019 年 3 月 18 日
please illustrate with a input and the desired output as text instead of picture
採用された回答
Jos (10584)
2019 年 3 月 18 日
You should learn about indexing, one of the most essential aspects of Matlab:
M = randi(4,10,5) ; M(:,1) = 1:size(M,1) % example data
M2 = M([1:2:end 2:2:end], :) % re-ordering the rows
0 件のコメント
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Cell Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!