Filter löschen
Filter löschen

Plotting multiple graphs in one figure

3 Ansichten (letzte 30 Tage)
Salma
Salma am 27 Mai 2011
I want to put 3 curves in one graph but i couldn't use the hold on function because for each curve i run several times to get the values i want so any idea how to do it without the hold on function??
  3 Kommentare
Salma
Salma am 27 Mai 2011
i run the code several times because the input is random
Walter Roberson
Walter Roberson am 27 Mai 2011
Please show the structure of your code. It is not clear why "hold on" would not work for you.

Melden Sie sich an, um zu kommentieren.

Antworten (4)

Jan
Jan am 27 Mai 2011
If you want to avoid "hold on" for any reasons (which I cannot understand), try this initially:
axes('NextPlot', 'add')

Samer Husam
Samer Husam am 30 Aug. 2012
try this:
curve 1: x1,y1
curve 2: x2,y2
curve 3: x3,y3
figure (1)
plot(x1,y1,x2,y2,x3,y3)

Igor
Igor am 27 Mai 2011
maybe
plot(gca,x1,y1)
plot(gca,x2,y2)
  1 Kommentar
Walter Roberson
Walter Roberson am 27 Mai 2011
Igor, under the default settings, the second plot would overwrite the first. Using "hold" or setting NextPlot are necessary to prevent that.

Melden Sie sich an, um zu kommentieren.


Walter Roberson
Walter Roberson am 27 Mai 2011
If you are not specifically creating a new figure each time, then you could switch to using line() instead of plot()

Kategorien

Mehr zu Specifying Target for Graphics Output finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by