Problems with MATLAB Engine API for Java

16 ビュー (過去 30 日間)
Manuel Rios
Manuel Rios 2017 年 2 月 18 日
回答済み: Bo Li 2017 年 3 月 15 日
I am trying to compile this piece of code:
import com.mathworks.engine.*;
public class javaEvalFunc {
public static void main(String[] args) throws Exception {
MatlabEngine eng = MatlabEngine.startMatlab();
eng.evalAsync("[X, Y] = meshgrid(-2:0.2:2);");
eng.evalAsync("Z = X .* exp(-X.^2 - Y.^2);");
Object[] Z = eng.getVariable("Z");
eng.close();
}
}
I found it on this web page: Java Engine
As you can see I need a reference to com.mathworks.engine.*;
This Page Info says that the .jar file that I need to Add is in this Path:
matlabroot/extern/engines/java/jar/engine.jar
But in my computer I just have a folder called phyton in this path
matlabroot/extern/engines
Where can I find the .jar file that I need ?
I am using Eclipse IDE by the way. thanks.
  3 件のコメント
manan lalit
manan lalit 2017 年 3 月 2 日
編集済み: manan lalit 2017 年 3 月 2 日
I have the same issue. I used the code written by Manuel and ran it on Eclipse after adding the external Engine JAR file from MATLAB 2016b, and ran into the following error.
Exception in thread "main" java.lang.NoClassDefFoundError: com/mathworks/mvm/MvmTerminatedException
at application.Main.main(Main.java:7)
Caused by: java.lang.ClassNotFoundException: com.mathworks.mvm.MvmTerminatedException
Can anyone help or have suggestions about what else I could try?
Anushan Vasantharajah
Anushan Vasantharajah 2017 年 3 月 2 日
I also have the same problem. Any one know the answer? :( please guys give some idea to sole the problem.

サインインしてコメントする。

採用された回答

Guillaume
Guillaume 2017 年 3 月 2 日
It would help if you used the documentation that come with your version. In R2016a, you will find no mention of the java engine, and that's because it's been introduced in R2016 (See the release notes under advanced software development).
You will have to upgrade to R2016b.

その他の回答 (1 件)

Bo Li
Bo Li 2017 年 3 月 15 日
With a simple test "example.java" like this:
import com.mathworks.engine.*;
public class CNN
{
public static void main(String[] args) throws Exception{
MatlabEngine eng = MatlabEngine.startMatlab();
double[] a = {2.0 ,4.0, 6.0};
double[] roots = eng.feval("sqrt", a);
eng.close();
}
}
Following commands work for me:
C:\JavaEngine\src>javac -classpath <matlabroot>\\extern\\engines\\java\\jar\\engine.jar
example.java
C:\JavaEngine\src>set PATH=<matlabroot>\\bin\\win64;%PATH%
C:\JavaEngine\src>java -classpath .;<matlabroot>\\extern\\engines\\java\\jar\\engine.jar
example

カテゴリ

Help Center および File ExchangeCall MATLAB from Java についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by