Convert matrix to different row, column combinations.

Hi!
I have a matrix A= [1 2 5 6 9 10; [3 4 7 8 11 12]
I want to make it to B = [1 2; 3 4; 5 6; 7 8; 9 10; 11 12]
How can I do that?

 Accepted Answer

More Answers (1)

Matt J
Matt J on 16 Jul 2018
Edited: Matt J on 16 Jul 2018
Using MAT2TILES,
B = cell2mat( mat2tiles(A,[2,2]).' );

Categories

Find more on Programming 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!