- 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);
imshow("board.tif",Border="loose")
imshow("board.tif",Border="tight")
A=imread('filename.tif');
imshow(A);
imshow('filename.jpg');
imshow(A,'InitialMagnification',150);
imshow(A,'InitialMagnification',50);