当从 Matlab 运行 .exe 文件时,如何避免手动输入输入文件?

发布于 2024-09-26 17:39:23 字数 162 浏览 0 评论 0原文

我正在使用 trans.exe 文件,该文件在运行时要求提供参数(=输入)文件。如果我使用Matlab运行trans.exe,那么如何在每次trans.exe运行时Matlab提示手动输入的情况下,直接在程序内部给出参数文件?跑步?

I am using a trans.exe file, which when run asks for a parameter (=input) file. If I run trans.exe using Matlab, then how can I directly give the parameter file inside the program without being prompted by Matlab to type it manually each time trans.exe is run?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

独留℉清风醉 2024-10-03 17:39:23

如果您的可执行文件无法接受命令行参数,那么您唯一的选择是调用一个调用,将内容通过管道传输到可执行文件的标准输入(在 Linux 下,这将类似于 !echo "blah等等等等”| my_executable)。不过,我不知道该技术在 Matlab 中是否有效。

If your executable doesn't have the ability to accept command-line parameters, then your only option is to invoke a call which pipes stuff to the stdin of your executable (under Linux, this would be something like !echo "blah blah blah" | my_executable). I don't know if this technique works from Matlab, though.

泪眸﹌ 2024-10-03 17:39:23

system('"C:\path_name\trans.exe" < "C:\path_name\input_trans_parameter_file.txt"');

上面system中使用的命令行如下函数直接使用 input_trans_parameter_file.txt 中存储的输入文件的名称。

<强>< “C:\path_name\input_trans_parameter_file.txt”

system('"C:\path_name\trans.exe" < "C:\path_name\input_trans_parameter_file.txt"');

The following command line used in above system function directly uses the name of the input file stored in input_trans_parameter_file.txt.

< "C:\path_name\input_trans_parameter_file.txt"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文