在Windows上运行.bat文件中的matlab代码

发布于 2025-01-07 20:14:43 字数 254 浏览 0 评论 0原文

这是我的 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

临风闻羌笛 2025-01-14 20:14:43

phreeqc 是什么类型的文件?如果它是批处理文件:phreeqc.bat,则它后面的行将永远不会被执行。要修复此问题,您必须包含 CALL 命令来执行 phreeqc:

call phreeqc first_trial_um_b.pqi
matlab -sd "C:\trialbatch" -r "clean_output.m"
matlab -sd "C:\trialbatch" -r "getCa.m"
pause  

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:

call phreeqc first_trial_um_b.pqi
matlab -sd "C:\trialbatch" -r "clean_output.m"
matlab -sd "C:\trialbatch" -r "getCa.m"
pause  
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文