Why it does not display the two images in the same window using the subplot function?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
This is the code:
>> a = imread('peppers.png');
>> b = imread('moon.tif');
>> subplot(1,2,1), imshow(a)
>> subplot(1,2,2), imshow(b)
Why first show the first figure and then the second but in two different screens and not in the same?
3 Kommentare
Siehe auch
Kategorien
Mehr zu Subplots finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!