I need to run a Java .jar file in Matlab.
Let\'s call the file MyJar.jar, I am running Java 1.8.0_121-b13 if that helps.
I have tried different solutions, and r
The simplest solution I can think of is to execute the jar in a system command with:
system('java -jar MyJar.jar')
This way should work on any OS without any workaround.