Closed jon4than closed 8 years ago
It looks like libsrc/jnumeric-2.5.1_ra0.1.jar has some issues with Jython 2.7. Using jnumeric-2.7.0_ra0.1.jar from https://bitbucket.org/zornslemon/jnumeric-ra/downloads seems to fix things.
libsrc/jnumeric-2.5.1_ra0.1.jar
jnumeric-2.7.0_ra0.1.jar
FWIW, my test is pretty simple:
# run from the jython shell import Numeric as N a = N.array([1, 2, 3]) b = N.array([3, 2, 1]) print a, b
And that should output [1 2 3] [3 2 1].
[1 2 3] [3 2 1]
Any thoughts or concerns?
Should be done. Let me know if you see any problems.
It looks like
libsrc/jnumeric-2.5.1_ra0.1.jar
has some issues with Jython 2.7. Usingjnumeric-2.7.0_ra0.1.jar
from https://bitbucket.org/zornslemon/jnumeric-ra/downloads seems to fix things.FWIW, my test is pretty simple:
And that should output
[1 2 3] [3 2 1]
.