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

83 Solutions

35 Solvers

Last Solution submitted on Feb 19, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...