QUESTION ON MATRIX RESHAPING
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
ARNAB CHATTARAJ
il 15 Mar 2016
Commentato: ARNAB CHATTARAJ
il 15 Mar 2016
Respected Sir, Simply I want to know the process how this is done in matlab for higher order matrix---
[1 2 3 [1 1 1 2 2 2 3 3 3
4 5 6 to 1 1 1 2 2 2 3 3 3
7 8 9 ] 1 1 1 2 2 2 3 3 3
4 4 4 5 5 5 6 6 6
4 4 4 5 5 5 6 6 6
4 4 4 5 5 5 6 6 6
7 7 7 8 8 8 9 9 9
7 7 7 8 8 8 9 9 9
7 7 7 8 8 8 9 9 9]
how it can be done for higher order matrix?? Please Reply. Your's Faithfully
Arnab Chattaraj.
0 Commenti
Risposta accettata
Andrei Bobrov
il 15 Mar 2016
Modificato: Andrei Bobrov
il 15 Mar 2016
a = reshape(1:9,3,[])';
out = kron(a,ones(3));
or
out = repelem(A,3,3)
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Creating and Concatenating Matrices 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!