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
3654 Solvers
Make one big string out of two smaller strings
1070 Solvers
Back to basics 16 - byte order
149 Solvers
Cody Computer Part 1 - Guess the system font used by uipanel
54 Solvers
Sum the 'edge' values of a matrix
154 Solvers