Do you help me create a matrix?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Muhendisleksi
le 4 Mai 2017
Commenté : Muhendisleksi
le 4 Mai 2017
DNdog =
7
11
Each element of the "DNdog" matrix must repeat 3 times. How can I do that?
So I mean:
DNdog =
7
7
7
11
11
11
Is there a custom command for this?
0 commentaires
Réponse acceptée
Andrei Bobrov
le 4 Mai 2017
Modifié(e) : Andrei Bobrov
le 4 Mai 2017
out = repelem(DNdog,3) ;
or
out = kron(DNdog,[1;1;1]);
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!