How to edit the script to run cmd?
Mostrar comentarios más antiguos
Hello
I want to run program cmd in Matlab and i want to build a iterative process. So I want to run the script in cmd via Matlab, but after typing
system('cmd')
the script seems to be useless and I can only deal with the data in the command window. I want to write commands in the script and run it conveniently ?
Thanks in advance
1 comentario
Jan
el 15 de Jul. de 2013
system starts a command shell already, so starting another instance of CMD from within seems to be useless. Which script do you want to run?
Respuestas (1)
Are you running with output arguments to catch the result of the script
[status, result] = system('cmd')
In any case 'cmd' on Windows simply invokes a DOS window, so it's not clear what output you are expecting.
1 comentario
chunqi
el 15 de Jul. de 2013
Categorías
Más información sobre Manage Products en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!