How to join several matrices into one matrix?

1 vue (au cours des 30 derniers jours)
Martha
Martha le 24 Fév 2014
Commenté : Martha le 24 Fév 2014
Hello,
I have a variable in a form of a matrix but repeat several times, 4794 rows, 1 column and 588 files, e.g. 4794x1x588 double. However, I want a matrix that join all the columns in the same matrix, having 4794 rows and 588 columns all in the same matrix, like this: 4794x588 double.
I'll appreciate any help. Martha

Réponse acceptée

Mischa Kim
Mischa Kim le 24 Fév 2014
Modifié(e) : Mischa Kim le 24 Fév 2014
Martha, check out the squeeze command. An example:
Y(:,:,1) = [1; 2];
Y(:,:,2) = [3; 4];
Y(:,:,3) = [5; 6];
size(Y)
Z = squeeze(Y)
size(Z)
  1 commentaire
Martha
Martha le 24 Fév 2014
Thank's Mischa, it worked well!

Connectez-vous pour commenter.

Plus de réponses (1)

Iain
Iain le 24 Fév 2014
Either of these will do what you've asked.
matrix = reshape(matrix,4794,588);
matrix = permute(matrix,[1 3 2]);

Catégories

En savoir plus sur Matrix Indexing 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