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?

 Réponse acceptée

Plus de réponses (1)

Matt J
Matt J le 16 Juil 2018
Modifié(e) : Matt J le 16 Juil 2018
Using MAT2TILES,
B = cell2mat( mat2tiles(A,[2,2]).' );

Catégories

En savoir plus sur Programming dans Centre d'aide et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by