Keep the graphic's zoom
Show older comments
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 Comments
Andrew Newell
on 14 Mar 2011
By "changing the variable", do you mean replotting with new values?
Mtlb Usr
on 14 Mar 2011
Andrew Newell
on 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
on 15 Mar 2011
Mtlb Usr
on 16 Mar 2011
Jan
on 16 Mar 2011
Please anser my question. Keeping the limits and zooming is a contradiction. Therefore you cannot do both.
Accepted Answer
More Answers (1)
Andrew Newell
on 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)
Categories
Find more on Data Exploration 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!