Can I run a bat file with Matlab?
290 ビュー (過去 30 日間)
表示 古いコメント
Hi! I have a bat file created to kill process:
taskkill /IM excel.exe
Can I run it with Matlab?
Thanks
3 件のコメント
採用された回答
Walter Roberson
2011 年 1 月 27 日
You can use system() or dos() or ! (exclamation-mark) to run a bat file.
0 件のコメント
その他の回答 (5 件)
Vieniava
2011 年 1 月 27 日
use this command:
system
Matlab's documentation for this function is available after
>> doc system
0 件のコメント
Babak babak
2017 年 7 月 24 日
Hi, guys when I use system or status for my batch file, it does not make outputs like when I double click on my batch file!
>> system('D:\CODE\workshop\MCNP\bab.bat','-echo')
C:\WINDOWS\system32>mcnp i=kc.i
ans =
-1.0737e+09
when I double clike on my batch file, it makes for me 3 outputs.
5 件のコメント
参考
カテゴリ
Find more on Big Data Processing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!