Reputation: 621
I'm working on a project to create a GUI for an algorithm in MATLAB using an ODE solver (ode45). So I have to translate the MATLAB code to Java. The problem is the ode45 solver. Java does not seem to have a solver ready to use, and ODE's are not really my speciality. Am I just not looking good, or are there really no ODE solvers for Java implemented?
thanks
Upvotes: 6
Views: 2600
Reputation: 20080
If you need a mathematical library for Java, there are several available on the market, either open-source or commercial. These are few ones.
Upvotes: 5
Reputation: 89
not exactly what you asked but did you consider creating the GUI from matlab instead? it's not that different from basic java swing/awt things unless you're looking for fancy GUI things.
http://www.mathworks.com/help/techdoc/creating_guis/bqz6qcd.html
Upvotes: 1