make matlab stop waiting for system return
2 ビュー (過去 30 日間)
古いコメントを表示
I want to run a program (putty) to make a ssh connection. I do this by e.g.
system('putty -load Terrameter -l root -pw root');
Now Matlab is waiting for the command prompt to close. But I want Matlab to continue its code and not wait for a return from putty. I need to keep this prompt open while I continue my matlab code.
How is this possible?
0 件のコメント
採用された回答
その他の回答 (1 件)
A Jenkins
2014 年 8 月 15 日
Do you have Parallel Computing Toolbox?
batch(@system,0,{'putty -load Terrameter -l root -pw root'})
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Introduction to Installation and Licensing についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!