Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a good NumPy clone for Jython? [closed]

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?

like image 785
jbrogdon Avatar asked Nov 25 '08 05:11

jbrogdon


People also ask

Does NumPy work with Jython?

You can't use numpy from Jython at this time. But if you're willing to use CPython instead of Jython, there are some open source Java projects that work with numpy (and presumably pandas).

Is Jython a Python?

Jython is a version of the Python programming language that runs on the Java platform. It allows users to write programs in Python and compile them to Java bytecodes that run directly on a Java Virtual Machine, or JVM.

What is Jython Interpreter?

Interactive experimentation - Jython provides an interactive interpreter that can be used to interact with Java packages or with running Java applications. This allows programmers to experiment and debug any Java system using Jython.


1 Answers

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.

like image 81
babbageclunk Avatar answered Sep 28 '22 15:09

babbageclunk