How to add more data and plot lines to existing plot
69 次查看(过去 30 天)
显示 更早的评论
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 个评论
Image Analyst
2022-7-28
@Bhimappa, why should he do that? Anyway, he most likely won't since his question is 10 years old.
回答(3 个)
Image Analyst
2012-12-27
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 个评论
Azzi Abdelmalek
2012-12-28
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
2012-12-28
@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" .
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!