Effacer les filtres
Effacer les filtres

creating mxn matrix from mxnxp matrix [without jumbling elements]

4 vues (au cours des 30 derniers jours)
zozo
zozo le 29 Mar 2012
I have a matrix A(60x100x6). I want to place the matrix from each of the 6th index one below the other to have B(360x100).
Example:
60x100
60x100
60x100
60x100
60x100
60x100
I tried using 'B=reshape(A,360,[])' but the values were somehow jumbled.
please help

Réponse acceptée

Sean de Wolski
Sean de Wolski le 29 Mar 2012
A = repmat(magic(5),[1 1 6]); %easy to verify
A = reshape(permute(A,[2 1 3]),size(A,1),[])'; %permute, pull columnwise to 2d, transpose to undo permute

Plus de réponses (0)

Catégories

En savoir plus sur Matrices and Arrays 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