[Matplotlib-users] Bus error on multiple hist plots

2007-07-14 Thread Chris Fonnesbeck
I get a repeatable bus error when trying to plot more than one histogram of simulated data. The first plot is generated without error, but invariably a second plot crashes: In [4]: x = random.negative_binomial(2, 0.25, 1000) In [5]: from pylab import * In [6]: hist(x) Out[6]: (array([240, 318,

Re: [Matplotlib-users] Bus error on multiple hist plots

2007-07-14 Thread John Hunter
On 7/14/07, David Warde-Farley [EMAIL PROTECTED] wrote: Bus error This is using recent svn builds of numpy and maplotlib. In particular, you need to make sure you remove your build directory and your install directory, get the latest svn, and do a clean rebuild. JDH

Re: [Matplotlib-users] Bus error on multiple hist plots

2007-07-14 Thread Christopher Fonnesbeck
On Jul 14, 2007, at 3:43 PM, David Warde-Farley wrote: Hi Chris, This just came up I think a day or so ago. Are you using TkAgg as your backend, I am using TkAgg and are you closing the plot window in between the two histograms? Yes. Try updating from svn, Andrew just fixed a bug.