Effacer les filtres
Effacer les filtres

stack multidimensional matrices horizontally

7 vues (au cours des 30 derniers jours)
androidguy
androidguy le 8 Fév 2018
Commenté : androidguy le 9 Fév 2018
Hi everyone
I have a trivial question but a bit tricky to put into code. I have 10 multidimensional matrices each of size 3 x 3 x 30. What I want to do is horizontally stack each of the smaller 3 x 3 matrices from all 10 matrices and form 1 big multidimensional matrix.. so the final size should be like 3 x 30 x 30.
How can i do this?
Thanks,

Réponse acceptée

Birdman
Birdman le 8 Fév 2018
One approach
A=randi([1 5],3,3,30,10);%demo data
permute(reshape(A,3,30,30),[1 2 3])
  3 commentaires
Birdman
Birdman le 9 Fév 2018
Normally reshape would vertically concentenate your matrices. Permute helps me to do ot horizontally and [1 2 3] stands for swapping the 1st and 3rd dimensions.
androidguy
androidguy le 9 Fév 2018
Got it. Thanks again.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Resizing and Reshaping Matrices dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by