How to unfold/concatenate a 3D Matrix?

5 vues (au cours des 30 derniers jours)
Rafael Borobio Castillo
Rafael Borobio Castillo le 10 Jan 2022
I have a 3D matrix of 100x21x100 and I want to perform a vertical unfolding, i.e., to get a 10000x21 matrix.
Thanks for your attention.

Réponse acceptée

Stephen23
Stephen23 le 10 Jan 2022
Making some guesses about the order you want, where A is your array:
B = reshape(permute(A,[1,3,2]),[],21)
  1 commentaire
Rafael Borobio Castillo
Rafael Borobio Castillo le 11 Jan 2022
it worked perfectly, thanks

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

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

Produits


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by