Replicate matrix elements without for loop
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Howard Wilton
il 22 Nov 2022
Commentato: Howard Wilton
il 22 Nov 2022
I am trying to take the matrix
base =[1 2; 3 4]
and replicate the elements to give
expn = [ 1 1 2 2; 1 1 2 2; 3 3 4 4; 3 3 4 4]
without using for loops. I would like to use repmat but not sure how to do that elementwise.
Risposta accettata
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Matrix Indexing 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!