Re: pylab/matplotlib large plot memory management - bug? or tuning parameter needed?

2009-10-20 Thread Carl Banks
On Oct 19, 12:15 pm, bdb112 wrote: > Summary: > > It is not straightforward to avoid memory leaks/consumption in pylab. > If we define > x = arange(1e6)     # adjust size to make the increment visible, yet > fast enough to plot > # then repetition of > plot(x,hold=0)   # consumes increasing memory

Re: pylab/matplotlib large plot memory management - bug? or tuning parameter needed?

2009-10-20 Thread Johan Grönqvist
bdb112 skrev: Summary: It is not straightforward to avoid memory leaks/consumption in pylab. If we define x = arange(1e6) # adjust size to make the increment visible, yet fast enough to plot # then repetition of plot(x,hold=0) # consumes increasing memory according to ubuntu system monitor

pylab/matplotlib large plot memory management - bug? or tuning parameter needed?

2009-10-19 Thread bdb112
Summary: It is not straightforward to avoid memory leaks/consumption in pylab. If we define x = arange(1e6) # adjust size to make the increment visible, yet fast enough to plot # then repetition of plot(x,hold=0) # consumes increasing memory according to ubuntu system monitor Details: #vers