Lubos Vrbka wrote:
> hello,
>
>> why is it actually not possible to do something like the following piece
>> of code?
>> ioff()
>> plot commands
>> draw()
>> ion()
> actually, i did some test now (modification of the example
> http://www.scipy.org/Cookbook/Matplotlib/Animations site):
>
> from
hello,
> why is it actually not possible to do something like the following piece
> of code?
> ioff()
> plot commands
> draw()
> ion()
actually, i did some test now (modification of the example
http://www.scipy.org/Cookbook/Matplotlib/Animations site):
from pylab import *
ioff()
x = arange(0,2*
hi,
> you can avoid (auto-)rescaling in matplotlib:
> ---
> import pylab
> ax = pylab.subplot(111, autoscale_on=False)
> # or for an already existing axes instance 'ax' : ax.set_autoscale_on(False)
Hi lubos,
you can avoid (auto-)rescaling in matplotlib:
---
import pylab
ax = pylab.subplot(111, autoscale_on=False)
# or for an already existing axes instance 'ax' : ax.set_autoscale_on(False)
hi guys,
is it somehow possible to force matplotlib (pylab) not to rescale the
axes while adding some data to an existing plot? currently i have to do
in a cycle (simplified example):
for (all data):
p_U_ij.append(pylab.plot(r, data)
pylab.xlim((0, 10))
pylab.ylim((-5,