Keep the graphic's zoom
古いコメントを表示
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 件のコメント
Andrew Newell
2011 年 3 月 14 日
By "changing the variable", do you mean replotting with new values?
Mtlb Usr
2011 年 3 月 14 日
Andrew Newell
2011 年 3 月 14 日
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
2011 年 3 月 15 日
Mtlb Usr
2011 年 3 月 16 日
Jan
2011 年 3 月 16 日
Please anser my question. Keeping the limits and zooming is a contradiction. Therefore you cannot do both.
採用された回答
その他の回答 (1 件)
Andrew Newell
2011 年 3 月 14 日
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)
カテゴリ
ヘルプ センター および File Exchange で Creating, Deleting, and Querying Graphics Objects についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!