Hello Glenn

Do you refer to a special example?
Maybe the following helps you.
------------------------------------------------------------------------------
from pylab import *

ion()
ax = subplot(111)
# ... some plotting
ax.relim()                      # reset intern limits of the current axes
ax.autoscale_view()   # reset axes limits

ioff()
show()
--------------------------------------------------------------------------------------

Good luck,
Matthias

On Friday 25 April 2008 08:01:24 G Jones wrote:
> I would like to extend the animated plot paradigm to an application
> where I need to autoscale the vertical axis each time the plot is
> updated. Any suggestions as to how to do so? I assume I need to tell
> the axis to autoscale, then draw the axis' artist. However, I am not
> sure how to do these things, I'm having trouble finding the
> appropriate methods in the matplotlib class documentation.
> Thanks,
> Glenn
>
> -------------------------------------------------------------------------
> This SF.net email is sponsored by the 2008 JavaOne(SM) Conference
> Don't miss this year's exciting event. There's still time to save $100.
> Use priority code J8TL2D2.
> http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/java
>one _______________________________________________
> Matplotlib-users mailing list
> Matplotlib-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/matplotlib-users



-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to