This command makes an array appear (internally) as a matrix with rows and columns. This is used with the imshow function. Added in version 2.1.9.
a = 1:9;
b = reshape(a, 3, 3);
% b is now 3x3
imshow. setsize (which does the same thing).