How to wait for external exe program output in matlab ??
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Abhimanyu Kashyap
il 14 Mag 2013
Commentato: Walter Roberson
il 29 Giu 2017
I am running NASTRAN from MATLAB.. My problem is that I want to run NASTRAN iteratively. For that I need to read NASTRAN output dat and f06 files over and again. But MATLAB goes on running continuously without waiting for the NASTRAN process to complete. So that gives error message. I want to stop MATLAB code until NASTRAN completes its work and gives the output files which I want to read from MATLAB in the next lines of codes..It has to wait until those files are generated. This runs in a loop.. I want to do this so many times. So I dont want to do it manually. Please help me.
0 Commenti
Risposta accettata
Walter Roberson
il 14 Mag 2013
If the NASTRAN program creates a graphics window, then it gets messy to do this.
If the NASTRAN program only uses console output, then on the system() or dos() command that you use to invoke the executable, do not have a '&' in the command line.
For example,
disp(1)
system('dir')
disp(2)
the disp(2) will not execute until "dir" has finished and returned.
2 Commenti
Jan Oltmann
il 29 Giu 2017
Hi,
I have the same problem. Unfortunately, your answer could not help me, because on my computer matlab never waits. I have a colleague, which computed the same matlab code and Matlab waited for the external program. Does anyone know how to solve this problem?
Walter Roberson
il 29 Giu 2017
If you take the same command to a Terminal window and run it there, does it wait for you?
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Get Started with MATLAB in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!