Effacer les filtres
Effacer les filtres

combine 3x3D into 4D matrix

13 vues (au cours des 30 derniers jours)
Sean Phillips
Sean Phillips le 17 Mai 2019
Commenté : Sean Phillips le 17 Mai 2019
I have 3 x 3D Matrixs of size (nrows x nfreqs x time) ie (5000 x 10 x 100)
i want to combine them into a 4D matrix of size (5000 x 3 x 10 x 1000)
ie the 5000 rows of 3D matrix are combined as 3 columns in the 4D matrix

Réponse acceptée

Walter Roberson
Walter Roberson le 17 Mai 2019
Easiest:
permute(cat(4,M1, M2, M3), [1 4 2 3])
less memory perhaps:
cat(2,reshape(M1, 5000, 1, 10, 100), reshape(M2, 5000, 1, 10, 100), reshape(M3, 5000, 1, 10, 100))
  1 commentaire
Sean Phillips
Sean Phillips le 17 Mai 2019
thank you. it works.

Connectez-vous pour commenter.

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