1 function Place_images (Dimension, Images)
\r
2 % creates a new window that contains all the specified existing windows/images
\r
3 % along with possible lines and other graphics, but without menus
\r
4 % Dimension is in the form [x, y] and Images is an array of their numbers
\r
7 for i=1:size(Images, 1)
\r
8 subplot(Dimension(1), Dimension(2), i);
\r
9 image_children = get(Images[i], 'Children');
\r