MATRIX MANUPULATION
Afficher commentaires plus anciens
suppose i have a matrix like this, a = [ 1 2 3 4; 5 6 7 8; 9 10 11 12] i want it like b = [1 2; 3 4; 5 6; 7 8; 9 10; 11 12 ] any idea ? thanks in advance
Réponses (1)
the cyclist
le 9 Juil 2011
a_t = a';
b_t = reshape(a_t,2,6);
b = b';
2 commentaires
Oleg Komarov
le 9 Juil 2011
one liner: b = reshape(a.',2,[]).';
Fangjun Jiang
le 9 Juil 2011
Golfer: b=reshape(a',2,[])'
Catégories
En savoir plus sur Data Types 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!