make matlab stop waiting for system return
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Toke Søltoft
le 15 Août 2014
Réponse apportée : Toke Søltoft
le 19 Août 2014
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 commentaires
Réponse acceptée
Plus de réponses (1)
A Jenkins
le 15 Août 2014
Do you have Parallel Computing Toolbox?
batch(@system,0,{'putty -load Terrameter -l root -pw root'})
0 commentaires
Voir également
Catégories
En savoir plus sur Startup and Shutdown dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!