On Sat, Jul 5, 2008 at 09:03, Gregor Thalhammer
<[EMAIL PROTECTED]> wrote:
> After upgrading to NumPy 1.1.0 (I installed
> numpy-1.1.0-win32-superpack-pyhon2.5) I observed a fatal failure with
> the following code which uses numpy.inner
>
> import numpy
> F = numpy.zeros(shape = (1,79), dtype = num
After upgrading to NumPy 1.1.0 (I installed
numpy-1.1.0-win32-superpack-pyhon2.5) I observed a fatal failure with
the following code which uses numpy.inner
import numpy
F = numpy.zeros(shape = (1,79), dtype = numpy.float64)
#this suceeds
FtF = numpy.inner(F,F.copy())
#this fails
FtF = numpy.inne