Duplicating an entire vector
8 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
How do you duplicate an entire vector? For example:
A=[1 2 3 4];
How do I get the following?
1 2 3 4 1 2 3 4 1 2 3 4
I thought repelem(A,3) would do the trick, but that replicates each element at a time.
0 Commenti
Risposta accettata
Più risposte (1)
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!