Create copies of each row of an array
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Thomas Hoyle
le 30 Nov 2016
Modifié(e) : Andrei Bobrov
le 30 Nov 2016
Is there a way to copy each row of an array one after another for example if I had
A =
1 2 3 4
5 6 7 8
how can I make it into
A =
1 2 3 4
1 2 3 4
5 6 7 8
5 6 7 8
0 commentaires
Réponse acceptée
Andrei Bobrov
le 30 Nov 2016
Modifié(e) : Andrei Bobrov
le 30 Nov 2016
kron(A,[1;1])
or
repelem(A,2,1)
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Matrices and Arrays dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!