MATLAB: Function producing two figure

figureplotsubplot

Hye, I made a function who gives 6 plot. I know how to post them all in one figure by using subplot. But I would like to post them on two figure. Two plot on the first figure and four on the second.

Best Answer

Hi,
do the following
figure
subplot(1,2,1)
%plot





subplot(1,2,2)
%plot
figure
subplot(2,2,1)
%plot
subplot(2,2,2)
%plot
subplot(2,2,3)
%plot
subplot(2,2,4)
%plot
Related Question