how can i rotate an N-dimensional matrix?
10 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
john creighton
le 14 Oct 2014
Commenté : Andrei Bobrov
le 15 Oct 2014
hi all i am having trouble with project and need to figure out how i can rotate an N-dimensional matrix so that i can 'look in from the side'. ie rotate the matrix around a virtical axis. see attached image for discription.
0 commentaires
Réponse acceptée
Andrei Bobrov
le 14 Oct 2014
Modifié(e) : Andrei Bobrov
le 15 Oct 2014
A = cat(3,[1 2 3;4 5 6;7 8 9],[10 11 12;13 14 15;16 17 18])
out = permute(A,[3,1,2]);
2 commentaires
Andrei Bobrov
le 15 Oct 2014
Hi John! You wanted following: [3,6,9;12,15,18] and so on, then:
out = flip(permute(A,[3,1,2]),3);
Plus de réponses (1)
Adam
le 14 Oct 2014
doc permute
is the n-dimensional equivalent of translation although I'm not 100% sure what you mean by looking at it from the side as that implies you are visualising the matrix in some way.
Voir également
Catégories
En savoir plus sur 3-D Scene Control 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!