QUESTION ON MATRIX RESHAPING

1 visualizzazione (ultimi 30 giorni)
ARNAB CHATTARAJ
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.

Risposta accettata

Andrei Bobrov
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)

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!

Translated by