Keep the graphic's zoom
Mostrar comentarios más antiguos
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 comentarios
Andrew Newell
el 14 de Mzo. de 2011
By "changing the variable", do you mean replotting with new values?
Mtlb Usr
el 14 de Mzo. de 2011
Andrew Newell
el 14 de Mzo. de 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
el 15 de Mzo. de 2011
Mtlb Usr
el 16 de Mzo. de 2011
Jan
el 16 de Mzo. de 2011
Please anser my question. Keeping the limits and zooming is a contradiction. Therefore you cannot do both.
Respuesta aceptada
Más respuestas (1)
Andrew Newell
el 14 de Mzo. de 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)
Categorías
Más información sobre Data Exploration en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!