How to wait for external exe program output in matlab ??

7 vues (au cours des 30 derniers jours)
Abhimanyu  Kashyap
Abhimanyu Kashyap le 14 Mai 2013
Commenté : Walter Roberson le 29 Juin 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.

Réponse acceptée

Walter Roberson
Walter Roberson le 14 Mai 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 commentaires
Jan Oltmann
Jan Oltmann le 29 Juin 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
Walter Roberson le 29 Juin 2017
If you take the same command to a Terminal window and run it there, does it wait for you?

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Matrix Indexing 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!

Translated by