필터 지우기
필터 지우기

wait for process in matlab2014a

조회 수: 1 (최근 30일)
Raphael
Raphael 2014년 7월 24일
댓글: Image Analyst 2014년 7월 25일
Hello How can I force matlab2014a to wait for a EXE process to complete? It used to be possible with "isprocess" in previous versions but it seems like this function does no longer exist in 2014a. Thanks Raphael
  댓글 수: 1
Ben11
Ben11 2014년 7월 24일
Isn't 'isprocess' a submission from the File Exchange? If so that should work in 2014a I guess.

댓글을 달려면 로그인하십시오.

채택된 답변

per isakson
per isakson 2014년 7월 24일
편집: per isakson 2014년 7월 24일
...
status = system(command) calls the operating system to execute the
specified command. The operation waits for the command to finish
execution before returning the exit status of the command to the
status variable.
...
To execute the operating system command in the background, include
the trailing character, &, in the command argument (for example,
'notepad &' on a Windows platform, or 'emacs &' on UNIX®). The exit
status is immediately returned to the status variable.
&nbsp
And like Ben says Isprocess is in the File Exchange
  댓글 수: 1
Image Analyst
Image Analyst 2014년 7월 25일
A related item (how to get other processes that are running) is given by the Mathworks Support Team here: http://www.mathworks.com/matlabcentral/answers/102372-how-can-i-get-the-process-id-of-the-current-matlab-session-in-matlab-7-5-r2007b
And here's another thing that could be useful in Windows: call up device manager:
% Launch Device Manager. Use trailing ampersand, otherwise program does not continue until user closes Device Manager.
system('C:\Windows\System32\devmgmt.msc &')

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Instrument Control Toolbox Supported Hardware에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by