vote up 5 vote down star
1

I'm a relatively new convert to Python. I've written some code to grab/graph data from various sources to automate some weekly reports and forecasts. I've been intrigued by the Jython concept, and would like to port some Python code that I've written to Jython. In order to do this quickly, I need a NumPy clone for Jython (or Java). Is there anything like this out there?

flag

2 Answers

vote up 3 vote down check

I can't find anything that's a clone of numpy, but there's a long list of Java numerics packages here - these should all be usable from Jython. Which one meets your requirements depends on what you're doing with numpy, I guess.

link|flag
vote up 0 vote down

Wilberforce is essentially corrrect.

However, the best Java numerics package is the Apache Commons Math library http://commons.apache.org/math/ -- that would be a better choice for a replacement than any of those listed in wilberforce's answer.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.