Run command-line type external software within a .m matlab
古いコメントを表示
Hi
Is there a way to pass a series of instructions to an external program in a matlab .m script ? It looks like
! appli code
will run the appli program with a first instruction code
What is the syntax to pass along the carriage return and another instruction to further select options for appli ?
3 件のコメント
dpb
2014 年 4 月 30 日
Anything the app expects on the command line has to built into the string passed including the \n, etc., etc., ...
Oftentimes the "more simpler" way is to use file redirection if the app understands that option.
MM
2014 年 4 月 30 日
dpb
2014 年 5 月 1 日
Unless one of the options is to switch to file input, that's probably not going to happen successfully.
There are ways (or at least there were w/ DOS) to simulate keypresses but those have pretty much gone the way of the dodo bird w/ later releases.
It's possible to build interactive shells around such with Tcl as the glue or similar.
採用された回答
その他の回答 (1 件)
Image Analyst
2014 年 5 月 1 日
0 投票
I think maybe people have used the java robot for that, but I'm not sure. If the program is ActiveX capable, you can use ActiveX.
カテゴリ
ヘルプ センター および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!