- subplot
[A1,map1]=imread('forest.tif');
[A2,map2]=imread('trees.tif');
figure;
subplot(1,2,1);
imshow(A1,map1);
subplot(1,2,2);
imshow(A2,map2);
[A1,map1]=imread('forest.tif');
[A2,map2]=imread('trees.tif');
figure;
subplot(1,2,1);
imshow(A1,map1);
subplot(1,2,2);
imshow(A2,map2);