How to unfold/concatenate a 3D Matrix?

1 visualización (últimos 30 días)
Rafael Borobio Castillo
Rafael Borobio Castillo el 10 de En. de 2022
Comentada: Rafael Borobio Castillo el 11 de En. de 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.

Respuesta aceptada

Stephen23
Stephen23 el 10 de En. de 2022
Making some guesses about the order you want, where A is your array:
B = reshape(permute(A,[1,3,2]),[],21)

Más respuestas (0)

Categorías

Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.

Productos


Versión

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by