Reduce size of multidimensional array

12 views (last 30 days)
Hello,
I have a multidimensional array size = 220 x 46 x 10 x 4 x2 . I would like to combine all of the data in the third dimension so that way I end up with a 4-dimesional array. Any help is greatly appreciated.
Take care and stay well!

Accepted Answer

James Tursa
James Tursa on 8 Feb 2021
One way using summing:
result = squeeze(sum(your_array,3));
  7 Comments
Early Social Development Lab Lab
Yes! Thank you! I did not realize the arrays had to be next to eachother before applying the reshape function!
James Tursa
James Tursa on 9 Feb 2021
Yes. Reshape does not change the order of the data in memory. You will often need to use another function first such as permute or transpose etc. to rearrange the data in memory before applying the reshape.

Sign in to comment.

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!