[SciPy-user] crash with a simple operation
Olivier Ravard
olivier.ravard at novagrid.com
Fri Jul 23 06:18:07 EDT 2004
Hi everybody,
I work on windows XP, python 2.3, scipy 0.3 and Numeric 23.1.
The folowing code crash python (without returned error message) :
import scipy
a=scipy.arange(258168,typecode='F')
c=a*a
but the two folowing code does not make a crash :
import scipy
a=scipy.arange(258167,typecode='F')
c=a*a
import Numeric
a=scipy.arange(258168,typecode='F')
c=a*a
I think this is a bug from scipy but how to solve it ? I thaught that scipy
use Numeric.array, does not ?
Thanks.
O.R.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.scipy.org/pipermail/scipy-user/attachments/20040723/bb31f3b1/attachment.html>
More information about the SciPy-User
mailing list