Hi kluni,
I am not sure I understand correctly your problem.
You can use 'subplot' to plot more figures in separate windows like
subplot(2,1,1),plot(x1,y1)
subplot(2,1,2),plot(x2,y2)
or you can plot the first one, then use command 'hold on' and plot the second one -> both figures will be in one window