要在Java中調用MATLAB程序,需要使用MATLAB引擎API。以下是一個簡單的示例代碼,演示了如何在Java中調用MATLAB程序并執行:
import com.mathworks.engine.*;
public class MatlabIntegration {
public static void main(String[] args) {
try {
// 啟動MATLAB引擎
MatlabEngine matlab = MatlabEngine.startMatlab();
// 在MATLAB中執行一個簡單的命令
matlab.eval("x = 1:10;");
matlab.eval("y = x.^2;");
// 從MATLAB中獲取結果
double[] result = matlab.getVariable("y");
// 打印結果
for (double value : result) {
System.out.println(value);
}
// 關閉MATLAB引擎
matlab.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}
請確保已經安裝了MATLAB,并添加了MATLAB引擎的庫文件到Java項目中。