Hi everyone,
I want to use plot and subplot functions just like in command window. I mean, i want to see my subplot output as a new figure not in GUI screen.
Thanks to everybody, have a nice day.

 Akzeptierte Antwort

Star Strider
Star Strider am 24 Mai 2015

0 Stimmen

I don’t have your code, but if you want a plot in a new figure window, precede the plot call with a figure call:
figure(1)
subplot(2,1,1)
plot( ...)
subplot(2,1,2)
plot
The numbers in the figure call are not absolutely necessary, but since MATLAB will put all subsequent plots in the existing figure window if you do not create a new figure window each time, it helps to keep track of them.

Weitere Antworten (1)

Berat Kaya
Berat Kaya am 24 Mai 2015
Bearbeitet: Berat Kaya am 24 Mai 2015

0 Stimmen

Thanks, i will try.
Edit: Thanks, it worked :)

Community Treasure Hunt

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

Start Hunting!

Translated by