how to repeat specific rows?
Show older comments
I have a cell array and would like to repeat certain rows. how do I do this?
Answers (1)
Jos (10584)
on 4 Mar 2014
Something like this?
C = {'hello' ; rand(2,3) ; 1:5, 6}
ix = [1 1 2 3 3 3 4]
C = C(ix)
Categories
Find more on Creating and Concatenating Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!