breaking a large table into smaller one
1 回表示 (過去 30 日間)
古いコメントを表示
i have a table
3 10 1
2 6 2
3 10 1
4 3 3
5 9 4
2 6 2
1 9 5
11 1 6
2 6 2
1 9 5
and i have an array in which position is given to break the table from that part
X=[2,4,6,7]
how can i do this such that i get all the tables in output
thank you in advance
0 件のコメント
採用された回答
madhan ravi
2019 年 8 月 12 日
ix = diff([0,X,size(x,1)]); % x your table
Wanted = mat2cell(x,ix)
3 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Tables についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!