MATLAB: How to make subplots image larger with mouse click

figureimage analysisimage processingsubplot

How can I make subplots image larger with mouse click in one of this image
figure(1),
subplot(nb,nb,i),
imshow(edge_final);
title('Canny');
...

Best Answer

set(gcf,'resize','on')
Related Question