-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consider using the MATLAB Engine API for Java #13
Comments
I just had a look at the documentation and the examples of the MATLAB Engine w.r.t. to // ...
// Get result from the workspace
Future<double[]> futureEval = ml.getVariableAsync("B");
double[] output = futureEval.get();
// ... We could use that to generate |
On the other hand, using the Engine API with Maven might not be the most fun project to work on: it is only bundled with MATLAB (http://de.mathworks.com/help/matlab/matlab_external/setup-environment.html). |
We could write a small shell script which does Another possible approach would to be create and publish our own |
MATLAB 2016b and later have a new MATLAB Engine API for Java which might be better—or at least better supported and more official—than matlabcontrol.
The text was updated successfully, but these errors were encountered: