Keep the graphic's zoom
Afficher commentaires plus anciens
Hi,
I would like to know how I can keep the zoom of graphic when I will go to change the variable that I'm watching at the moment.
thanks
regards
6 commentaires
Andrew Newell
le 14 Mar 2011
By "changing the variable", do you mean replotting with new values?
Mtlb Usr
le 14 Mar 2011
Andrew Newell
le 14 Mar 2011
I think so. Do you want to preserve the axes limits or the scale? (In other words, if your X axis limits are [3 5] after zooming, do you want to keep it at [3 5] or [Xlower Xlower+2]?)
Mtlb Usr
le 15 Mar 2011
Mtlb Usr
le 16 Mar 2011
Jan
le 16 Mar 2011
Please anser my question. Keeping the limits and zooming is a contradiction. Therefore you cannot do both.
Réponse acceptée
Plus de réponses (1)
Andrew Newell
le 14 Mar 2011
If I understand your question, you can do something like the following. Make your first plot, for example
plot(1:10)
Zoom in, and then save the values of axis:
v = axis;
Finally, make your next plot and set the axis values.
plot(3:5)
axis(v)
Catégories
En savoir plus sur Data Exploration dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!