plotting two different graphs

5 Ansichten (letzte 30 Tage)
lowcalorie
lowcalorie am 13 Mai 2012
Kommentiert: Walter Roberson am 14 Jun. 2020
im using plot to graph one curve but now i need to plot a second curve on a different graph so how can i open 2 graphs from one script

Akzeptierte Antwort

Srinivas
Srinivas am 13 Mai 2012
help figure
is this what you want
  4 Kommentare
MILAN Barot
MILAN Barot am 14 Jun. 2020
how to plot two spereate graphs in a single window
Walter Roberson
Walter Roberson am 14 Jun. 2020
Either use subplot like Image Analyst said, or use "hold on" after drawing the first graph so that the second graph goes into the same axes.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Image Analyst
Image Analyst am 13 Mai 2012
Try subplot(). This will let you have two plots on the same figure so you can see them both at the same time and don't have to keep switching between figures.
subplot(1, 2, 1);
plot(1:30);
subplot(1, 2, 2);
plot(200:247);

Kategorien

Mehr zu Line Plots finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by