How to add more data and plot lines to existing plot
69 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Image Analyst
le 28 Juil 2022
@Bhimappa, why should he do that? Anyway, he most likely won't since his question is 10 years old.
Réponses (3)
Image Analyst
le 27 Déc 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 commentaires
Azzi Abdelmalek
le 28 Déc 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
le 28 Déc 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
le 27 Déc 2012
Add your data to your old variables then plot a new curve
0 commentaires
Norma
le 26 Juil 2020
Modifié(e) : Image Analyst
le 27 Juil 2020
Magnifying a Segment of Plot in MATLAB Figure
0 commentaires
Voir également
Catégories
En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!