I have plotted a few graphs in different sections of my scripts, however when I run the m-file it will only show the last graph, I have to run it section by section in order to get all the graphs. How can I get all the graphs after I hit the run button? p.s. I am new to matlab so please explain with simple language, thank you for the help!

 Akzeptierte Antwort

Star Strider
Star Strider am 8 Okt. 2016

40 Stimmen

Specify each plot as a separate figure. I number mine, but that’s not absolutely necessary. See the documentation for the figure function for details.
Example:
figure(1)
plot(a,b)
grid
figure(2)
plot(c,d)
grid

4 Kommentare

Pedro Rocha
Pedro Rocha am 19 Aug. 2020
Excelent!! Tks
Salima Ljamai
Salima Ljamai am 17 Sep. 2020
Thank you.
Star Strider
Star Strider am 18 Sep. 2020
Thank you!
My pleasure!
Jurek
Jurek am 20 Mär. 2025
Cheers person from 5 years ago

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 8 Okt. 2016

Kommentiert:

am 20 Mär. 2025

Community Treasure Hunt

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

Start Hunting!

Translated by