How to convert matlab program to java by any tool/software?
MATLAB to JAVA
Collapse
X
-
Tags: None
-
Hi there,
I'm sure someone out there has made a porting tool. However, I would do it the old fashion way if I were you.
Porting tools generally do not work well unless your input code is very well written. If It's only a small MATLAB program, you could always try but if it's something substantial, I would start by designing some type of class diagram and possibly identify all the functions that you are using in the MATLAB code (matlab has a huge library of functions and the java api may not have certain ones). This means that you may need to code them yourself.
Good luck.
Comment