在Windows上运行.bat文件中的matlab代码
这是我的 .bat 文件中使用的代码
phreeqc first_trial_um_b.pqi
matlab -sd "C:\trialbatch" -r "clean_output.m"
matlab -sd "C:\trialbatch" -r "getCa.m"
pause
phreeqc 部分工作得很好,但是 matlab 代码不知何故无法运行。当我在 DOS 中手动输入 matlab 代码时,它运行得非常完美。
Here's the code used in my .bat file
phreeqc first_trial_um_b.pqi
matlab -sd "C:\trialbatch" -r "clean_output.m"
matlab -sd "C:\trialbatch" -r "getCa.m"
pause
The phreeqc part works just fine, however the matlab code somehow doesn't run. When I type the matlab code manually into DOS, it works flawlessly.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
phreeqc 是什么类型的文件?如果它是批处理文件:phreeqc.bat,则它后面的行将永远不会被执行。要修复此问题,您必须包含 CALL 命令来执行 phreeqc:
What type of file is phreeqc? If it is a Batch file: phreeqc.bat, then the lines following it will never be executed. To fix it, you must include a CALL command to execute phreeqc: