different windows for different plots

I wrote a large program full of plot() and plot3() order,but I want to have my graphs in different windows. How can order each plot() or plot3() be shown in different window.
For example:
first plot() in window1
second plot() in window2
first plot3() in window3
third plot3() in window4
...

 Risposta accettata

figure
plot
figure
plot

6 Commenti

Ayob
Ayob il 14 Giu 2013
What do you mean? Explain,please.
Example
t=0:0.1:10;
y1=sin(t);
y2=cos(t);
figure(1)
plot(t,y1);
figure(2)
plot(t,y2)
Ayob
Ayob il 14 Giu 2013
You are the best.
Indeed the best, Thanks
I'll plus-one as well, Azzi the MVP
Thank you sir. That was very helpful

Accedi per commentare.

Più risposte (1)

Rame Dawli
Rame Dawli il 3 Set 2020

0 voti

How to plot one function in two different windows that each window has a different interval?

Categorie

Scopri di più su Graphics Objects in Centro assistenza e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by