three figures in one figure for display

2 visualizzazioni (ultimi 30 giorni)
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 Commenti
Image Analyst
Image Analyst il 24 Ago 2015
I don't see any question here. Are you wanting to know how to use subplot()???
Sophia
Sophia il 31 Ago 2015
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.

Accedi per commentare.

Risposta accettata

Walter Roberson
Walter Roberson il 31 Ago 2015
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 Commenti
Sophia
Sophia il 1 Set 2015
Thanks Walter.. Yes, that's what i was looking for!

Accedi per commentare.

Più risposte (1)

Azzi Abdelmalek
Azzi Abdelmalek il 24 Ago 2015
Use
hold on

Community Treasure Hunt

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

Start Hunting!

Translated by