How to repeat rows of a matrix sequentially?
1 回表示 (過去 30 日間)
古いコメントを表示
I have a column with 24 rows as attached in the file 'DATA.xlsx'. I want each row to repeat 20 times one after the other i.e.first and second element in the given column is 23, 45 and so on. The new column should contain 20 rows of 23 then 20 rows of 45 and so on keep repeating. How can this be done? Thanks and regards, Parth
0 件のコメント
回答 (2 件)
Roger Stafford
2016 年 5 月 3 日
Let your present 24 x 1 column vector be called x.
x2 = reshape(repmat(x.’,20,1),[],1);
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Descriptive Statistics についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!