Re: [Numpy-discussion] Unhandled floating point exception running test in numpy-1.0.3 and svn 3875

2007-06-23 Thread rex
Stefan van der Walt <[EMAIL PROTECTED]> [2007-06-23 15:06]: > > On Sat, Jun 23, 2007 at 07:35:35PM +, John Ollinger wrote: > > > > I have just been updating our version of Python, numpy and scipy and have > > run > > into a floating point exception that crashes Python when I test the > > re

Re: [Numpy-discussion] Unhandled floating point exception running test in numpy-1.0.3 and svn 3875

2007-06-23 Thread Stefan van der Walt
Hi John On Sat, Jun 23, 2007 at 07:35:35PM +, John Ollinger wrote: > > I have just been updating our version of Python, numpy and scipy and have run > into a floating point exception that crashes Python when I test the release. > > I am running gcc 3.3.1 on SuSe Linux 2.4.21-144-smp4G. Th

[Numpy-discussion] Unhandled floating point exception running test in numpy-1.0.3 and svn 3875

2007-06-23 Thread John Ollinger
I have just been updating our version of Python, numpy and scipy and have run into a floating point exception that crashes Python when I test the release. I am running gcc 3.3.1 on SuSe Linux 2.4.21-144-smp4G. The error first occurred with numpy-1.0.3. I downloaded svn 3875 when I then read t

Re: [Numpy-discussion] How to create a boolean sub-array from a larger string array?

2007-06-23 Thread Andriy Basilisk
> You can always use something like > > mdat[[2,4]] == '*' > > to get the boolean array you want. This scheme can work with any string > representation of True and False. > Dang! I keep forgetting that a conditional test can return an array like that - thanks for the reminder, this will clean up