How to add more data and plot lines to existing plot
68 views (last 30 days)
Show older comments
I am trying to add a new line to existing plot using "Add Data" in the plot browser. Instead of adding a new line (and a new variable in the plot browser) my old plot line is being replaced.
I was trying to follow the example as shown in the tutorial "second order systems with various damping coefficients". Instead of adding a new plot for T vs ampdecay my old line of t vs x was being replaced.
2 Comments
Image Analyst
on 28 Jul 2022
@Bhimappa, why should he do that? Anyway, he most likely won't since his question is 10 years old.
Answers (3)
Image Analyst
on 27 Dec 2012
Use
hold on;
after your first call to plot() to avoid subsequent calls to plot replacing your earlier plot curves.
The hold function controls whether MATLAB clearsthe current graph when you make subsequent calls to plotting functions(the default), or adds a new graph to the current graph.
hold on retains the currentgraph and adds another graph to it. MATLAB adjusts the axes limits,tick marks, and tick labels as necessary to display the full rangeof the added graph.
hold off resets hold stateto the default behavior, in which MATLAB clears the existinggraph and resets axes properties to their defaults before drawingnew plots.
3 Comments
Azzi Abdelmalek
on 28 Dec 2012
I don't think it's good idea to use hold on to do the same plot, I think it's better to replot new data and old data at the same time. You can't for example use get(gco,'Ydata') to get Y data.
Jan
on 28 Dec 2012
@Azzi: Why do you think that re-drawing is a benefit? The result of adding a new plot is exactly the same, but redarwing all lines takes more time and riquire all lines to have the same number and position of X-values. Therefore I prefer "hold on" or "hold all" .
Norma
on 26 Jul 2020
Edited: Image Analyst
on 27 Jul 2020
Magnifying a Segment of Plot in MATLAB Figure
0 Comments
See Also
Categories
Find more on 2-D and 3-D Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!