我制作了一个R脚本,该脚本生成了一个命令行,用于启动MATLAB;。exe";带有参数的文件。
生成的命令行如下所示:
cmd = "X:matlabscript.exe [xxx,xxx,...]"
然后我在shell中输入命令:
shell(cmd)
我得到了这个错误:
Error: Could not find version 9.7 of the MATLAB Runtime.
Attempting to load mclmcrrt9_7.dll.
Please install the correct version of the MATLAB Runtime.
Contact your vendor if you do not have an installer for the MATLAB Runtime.
Warning message:
In shell(cmd) :
l'exécution de 'X:matlabscript.exe [xxx,xxx,...]' a échoué avec le code d'erreur 65535
当我在CMD.exe中复制粘贴命令时,它工作正常。
我还在系统环境变量"中添加了运行时路径;路径";但这并没有改变任何事情。
如何通过R启动MATLAB Runtime?
问题已解决。。。
我不得不重新启动计算机,因为仅仅重新启动R会话是不够的。
它现在工作得很好!