how to repeat specific rows?
1 回表示 (過去 30 日間)
古いコメントを表示
I have a cell array and would like to repeat certain rows. how do I do this?
0 件のコメント
回答 (1 件)
Jos (10584)
2014 年 3 月 4 日
Something like this?
C = {'hello' ; rand(2,3) ; 1:5, 6}
ix = [1 1 2 3 3 3 4]
C = C(ix)
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!