Clear Filters
Clear Filters

QUESTION ON MATRIX RESHAPING

4 views (last 30 days)
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.

Accepted Answer

Andrei Bobrov
Andrei Bobrov on 15 Mar 2016
Edited: Andrei Bobrov on 15 Mar 2016
a = reshape(1:9,3,[])';
out = kron(a,ones(3));
or
out = repelem(A,3,3)

More Answers (0)

Categories

Find more on Modeling in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!