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

3 次查看(过去 30 天)
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.

采纳的回答

Walter Roberson
Walter Roberson 2013-5-14
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 个评论
Jan Oltmann
Jan Oltmann 2017-6-29
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 2017-6-29
If you take the same command to a Terminal window and run it there, does it wait for you?

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by