Split large matrix in smaller matrices?

9 vues (au cours des 30 derniers jours)
Alan
Alan le 15 Juin 2012
Hi, I have a matrix A = 169 x 606 and I want to convert each row into a 13 x 13 matrix? I know this is probably a simple operation, but I can't seem to get it to work. If anyone has any ideas it would be very much appreciated!
Thanks.

Réponse acceptée

Andrei Bobrov
Andrei Bobrov le 15 Juin 2012
eg ( A - your matrix with size (169 x 4),)
for each column:
A = randi(3000,169,4);
out = reshape(A,13,13,[])

Plus de réponses (0)

Catégories

En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by