java调用matlab,需要满足matlab的jdk版本与自己的jdk版本一致,例如JDK1.8的需要2017b以上的版本。
在MATLAB的Command Window输入deploytool命令
选择Library Compiler,在弹出的窗口选择Java Package,输入Library name,Class name输入类名,例如plotter(java类,在后边java代码中会用)。点击加号按钮,添加需要导出的.m文件,完成之后,点击右上角的package。
引用两个jar包:
import com.mathworks.toolbox.javabuilder.MWArray;
import com.mathworks.toolbox.javabuilder.MWClassID;
import com.mathworks.toolbox.javabuilder.MWComplexity;
import com.mathworks.toolbox.javabuilder.MWNumericArray;
import demo.plotter;
public class ConnectMatlabTest {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
MWNumericArray x = null; // 存放x值的数组
MWNumericArray y = null; // 存放y值的数组
plotter thePlot = null; // plotter类的实例(在MatLab编译时,新建的类)
int n = 20; // 作图点数
try {
// 分配x、y的值
int[] dims = { 1, n };
x = MWNumericArray.newInstance(dims, MWClassID.DOUBLE,
MWComplexity.REAL);
y = MWNumericArray.newInstance(dims, MWClassID.DOUBLE,
MWComplexity.REAL);
// 定义 y = x^2
for (int i = 1; i <= n; i++) {
x.set(i, i);
y.set(i, i * i);
}
// 初始化plotter的对象
thePlot = new plotter();
// 作图
thePlot.drawplot(x, y);
thePlot.waitForFigures();
}
catch (Exception e) {
System.out.println("Exception: " + e.toString());
}
finally {
// 释放本地资源
MWArray.disposeArray(x);
MWArray.disposeArray(y);
if (thePlot != null)
thePlot.dispose();
}
}
}
安装matlab提供的MATLAB Compiler Runtime (MCR)
1.报找不到dll文件,需要配置dll目录的环境变量,目录地址:MATLAB Runtime\v96\runtime\win64
2.报输出参数太多,需要设置返回参数个数,为调用函数的第一个参数
3.若返回参数为矩阵,需转换为MWNumericArray
免责声明:本文系网络转载或改编,未找到原创作者,版权归原作者所有。如涉及版权,请联系删