Is there now a simple way to pass Java classes to a .py program using scipy libraries?
I have seen suggestions for using Jython here on StackExchange (Java Python Integration and Using Python from within Java). I have also seen posts saying that it will not work with numpy or similar libraries (Integrate Python and his libraries with Java, Calling python functions from *.py files from java and passing and returning, and Executing Python script from Java in Tomcat project).
I would like to be able to pass a Java class to the .py code, run a scipy computation, and then pass the results back to Java (something that I am currently able to do with MATLAB .m files). I would also like to be able to put this on a parallel processing cloud server since 1) my real-time Java program (running the GUI and main features) is already on the cloud, and 2) computational speed is of essence.