How to reshape matrix in this way?

5 views (last 30 days)
Hello everyone,
I was wondering if anyone could help me in a simple question in matrix reshaping.
I have a 3x4 matriz M, as it follows:
M = [1 2 3 4;
5 6 7 8;
9 10 11 12]
I would like to reshape M to have the following matrix N:
N = [1 2;
3 4;
5 6;
7 8;
9 10;
11 12]
I have tried 'reshape' command, but failed. Can anyone please help?
Thanks in advance!

Accepted Answer

the cyclist
the cyclist on 12 May 2020
Edited: the cyclist on 12 May 2020
N = reshape(M.',2,6).';
You need to transpose first (and later back again), because the reshape command works down the columns.
  1 Comment
Marcello Congro
Marcello Congro on 12 May 2020
Edited: Marcello Congro on 12 May 2020
Thank you so much for your fast answer! I wasn't transposing twice. Now it worked! =)

Sign in to comment.

More Answers (1)

BN
BN on 12 May 2020
Hello, Try this:
Answer = reshape(M.',2,[]).';

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Products


Release

R2017a

Community Treasure Hunt

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

Start Hunting!