Borrar filtros
Borrar filtros

Rotate 3D matrix

29 visualizaciones (últimos 30 días)
Johanna Popp
Johanna Popp el 18 de Jun. de 2021
Editada: Johanna Popp el 18 de Jun. de 2021
Hi all :)
My problem seems to be quite simple but I can't figure it out somehow.
I have a 3D array size 376x376x30 and I would like to rotate it so that the dimensions are 30x376x376 instead.
Thanks for your help!

Respuestas (1)

Jan
Jan el 18 de Jun. de 2021
Editada: Jan el 18 de Jun. de 2021
X = rand(2, 3, 4);
Y1 = permute(X, [3,1,2]);
size(Y1)
ans = 1×3
4 2 3
Y2 = permute(X, [3,2,1]);
size(Y2)
ans = 1×3
4 3 2
By the way, "matrix" means 2D by definition. You have a "3D array".
  1 comentario
Johanna Popp
Johanna Popp el 18 de Jun. de 2021
Thanks for your help!

Iniciar sesión para comentar.

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by