JNumeric

Post any questions, ideas, or topics related to Jython and Python scripting.
Post Reply
User avatar
joleenf
Posts: 1123
Joined: Mon Jan 19, 2009 7:16 pm

JNumeric

Post by joleenf »

Hi,

Is JNumeric still available? I can't import it any longer or perhaps I am importing it incorrectly into the jython shell...

"import Numeric as numeric"

Thanks,
Joleen
User avatar
bobc
Posts: 990
Joined: Mon Nov 15, 2010 5:57 pm

Re: JNumeric

Post by bobc »

Hi Joleen -

I'm also seeing an issue importing JNumeric. This worked back in McV 1.5, but now fails in the nightlies.

I wrote this up as Inquiry 2159.

You are running your import command correctly by the way. For example, this works in 1.5 but fails in 1.6beta1:

Code: Select all

import Numeric as numeric
a=numeric.array([1,2,3])
b=numeric.array([3,2,1])
print a,b

You are using a nightly, correct?

Thanks for bringing this up -
Bob Carp
User avatar
joleenf
Posts: 1123
Joined: Mon Jan 19, 2009 7:16 pm

Re: JNumeric

Post by joleenf »

Hi Bob,

Yes, this is in the nightly where the problem exists.

Thanks,
Joleen
User avatar
bobc
Posts: 990
Joined: Mon Nov 15, 2010 5:57 pm

Re: JNumeric

Post by bobc »

Hi Joleen -

One of our programmers made a change that allows JNumeric to work again. This change is in today's nightly. If you try this out and run into any problems, please let us know.

Thanks -
Bob
Post Reply