Function producing two figure

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.

 채택된 답변

Friedrich
Friedrich 2011년 7월 19일

2 개 추천

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

댓글 수: 1

Jan
Jan 2011년 7월 19일
@Friedrich: You are creating two figures by calling the command FIGURE twice. Sometimes the best solutions are a kind of straight. +1

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

질문:

2011년 7월 19일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by