How to add more data and plot lines to existing plot
67 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Image Analyst
el 28 de Jul. de 2022
@Bhimappa, why should he do that? Anyway, he most likely won't since his question is 10 years old.
Respuestas (3)
Image Analyst
el 27 de Dic. de 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 comentarios
Azzi Abdelmalek
el 28 de Dic. de 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
el 28 de Dic. de 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" .
Azzi Abdelmalek
el 27 de Dic. de 2012
Add your data to your old variables then plot a new curve
0 comentarios
Norma
el 26 de Jul. de 2020
Editada: Image Analyst
el 27 de Jul. de 2020
Magnifying a Segment of Plot in MATLAB Figure
0 comentarios
Ver también
Categorías
Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!