The following code indicates there is a problem adding a numpy scalar
type to a Numeric array. Is this expected behavior or is there a bug
somewhere?

This bit me in the context of updating some of my code to numpy, while
part of it still uses Numeric.

import Numeric
import numpy

print 'Numeric.__version__',Numeric.__version__
print 'numpy.__version__',numpy.__version__

a = Numeric.zeros( (10,2), Numeric.Float )
b = numpy.float64(23.39)
a[0,1] = a[0,1] + b
assert a[0,1]==b


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Numpy-discussion mailing list
Numpy-discussion@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/numpy-discussion

Reply via email to