How to duplicate cell array by rows?
39 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Dongyan Zhu
il 19 Giu 2021
Risposto: Scott MacKenzie
il 19 Giu 2021
I have an 1x3 cell array:
Sequence =
{'3'} {'1'} {'4'}
and a global parameter (integer) named 'handles.times'.
Now I want to realize the following task:
If this integer is 2, then I get the following 'newSequence':
newSequence =
{'3'} {'1'} {'4'} {'3'} {'1'} {'4'}
If this integer is 3, then I get the following 'newSequence':
newSequence =
{'3'} {'1'} {'4'} {'3'} {'1'} {'4'} {'3'} {'1'} {'4'}
and so on...
Does someone know the method? Many thanks!
0 Commenti
Risposta accettata
Scott MacKenzie
il 19 Giu 2021
n = handles.times; % your integer value
newSequence = repmat(sequence, 1, n);
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Logical in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!