How to go to the next line in case of using 'system' command ?
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I am trying to run the program by using 'system' command and then move the mouse cursor and click on it.I can open the program by using 'system' command but it does not follow the next line in the code unless I close the program. I would like to move the mouse cursor without closing the program. How can I stop the 'system ' command after I used it ?
0 commentaires
Réponse acceptée
TAB
le 5 Juin 2012
Try
>> system('YourCommand &')
4 commentaires
TAB
le 5 Juin 2012
You can put the line as
system(' "C:\Documents and Settings\guestaskin\Desktop\model\idling1.$PJ" &') ;
OR
If your program file (idling1.$PJ) can be executed by double click on it, then you can use
>> winopen('C:\Documents and Settings\guestaskin\Desktop\model\idling1.$PJ');
winopen() is equivalent to double clicking on a file.
Plus de réponses (1)
Muruganandham Subramanian
le 5 Juin 2012
Hi askin,
Did you use the 'home ' command. I think it'll work, just try it.
Voir également
Catégories
En savoir plus sur Startup and Shutdown dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!