[Matrix-SIG] Core dump in NumPy when multiplying with complex numbers.

Janko Hauser jhauser@ifm.uni-kiel.de
Tue, 22 Dec 1998 09:47:55 +0100 (CET)


Python 1.5.2b1 (#1, Dec 11 1998, 11:30:32)  [GCC 2.7.2.3] on linux2
Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam
>>> import Numeric
>>> (1+0j)*Numeric.array([1,2])
array([ 1.+0.j,  2.+0.j])
>>> 
Debian 2.0+ LLNL6


Python 1.5.2a2 (#2, Oct 20 1998, 10:00:20) [C] on osf1V4
Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam
>>> import Numeric
>>> (1+0j)*Numeric.array([1,2])
array([ 1.+0.j,  2.+0.j])
>>> 
Alpha Workstation

No problem here. 

__Janko