Swap double array dimensions

I have an 288x384x52 double array which I would like to transform to 288x52x384 double

1 Comment

Thank you. I tried that, and it did not give an array of 288x52x384 instead

Sign in to comment.

 Accepted Answer

Matt J
Matt J on 14 Jun 2020
Edited: Matt J on 14 Jun 2020
permute(yourArray,[1,3,2])

4 Comments

Thank you. I tried that and it did not give an array of 288x52x384 instead
Works fine for me:
>> A=rand(288,384,52); Aperm=permute(A,[1,3,2]); whos A Aperm
Name Size Bytes Class Attributes
A 288x384x52 46006272 double
Aperm 288x52x384 46006272 double
You are right, I just run it again and it did change the array... Thank you so much!
You're welcome, but please Accept-click the answer to indicate that your question was resolved.

Sign in to comment.

More Answers (0)

Categories

Asked:

on 14 Jun 2020

Commented:

on 14 Jun 2020

Community Treasure Hunt

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

Start Hunting!