Problem 43737. Alternative Dimensions

  • Created by JD

Given a multidimensional matrix, transform the matrix so the dimensions are in the order given by variable ord. For example, given the following matrix:

m has 3 dimensions

m(1,:,:) = all 1s
m(2,:,:) = all 2s
m(3,:,:) = all 3s

After the transformation to [3 2 1], the matrix should be:

m(:,:,1) = all 1s
m(:,:,2) = all 2s
m(:,:,3) = all 3s

Solution Stats

41.1% Correct | 58.9% Incorrect
Last Solution submitted on Dec 05, 2023

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers29

Suggested Problems

More from this Author11

Community Treasure Hunt

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

Start Hunting!