three figures in one figure for display

조회 수: 2 (최근 30일)
Sophia
Sophia 2015년 8월 24일
댓글: Ishaan Chauhan 2021년 2월 18일
clf
figure(1);
colormap(jet)
pcolor(Uyear)
shading interp % remove the grid lines
colorbar
figure(2);
colormap(jet)
pcolor(Vyear)
shading interp % remove the grid lines
colorbar
figure(3);
colormap(jet)
pcolor(U2/V2)
shading interp
colorbar
  댓글 수: 2
Image Analyst
Image Analyst 2015년 8월 24일
I don't see any question here. Are you wanting to know how to use subplot()???
Sophia
Sophia 2015년 8월 31일
yes, the above program will give me three different figures in three different windows.. i want all of them to be in just one window..i hope it helps to justify my question.

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

채택된 답변

Walter Roberson
Walter Roberson 2015년 8월 31일
figure(1);
subplot(3,1,1)
pcolor(Uyear)
colormap(jet)
shading interp % remove the grid lines
colorbar
subplot(3,1,2)
pcolor(Vyear)
colormap(jet)
shading interp % remove the grid lines
colorbar
subplot(3,1,3)
pcolor(U2/V2)
colormap(jet)
shading interp
colorbar
  댓글 수: 2
Sophia
Sophia 2015년 9월 1일
Thanks Walter.. Yes, that's what i was looking for!
Ishaan Chauhan
Ishaan Chauhan 2021년 2월 18일
Thanks Walter

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

추가 답변 (1개)

Azzi Abdelmalek
Azzi Abdelmalek 2015년 8월 24일

카테고리

Help CenterFile Exchange에서 Subplots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by