필터 지우기
필터 지우기

How do I get a script to wait until a figure is closed?

조회 수: 159 (최근 30일)
John Hackett
John Hackett 2018년 3월 10일
댓글: Walter Roberson 2018년 3월 10일
So basically I have a gui, with a button press. On button press it runs a script that has a startBackground command in it. But before the figure from the script can even pop up, I get an error stating that a session was closed while it was running. However, I want the script to run until the user closes the figure. Basically it is a live figure, showing live inputed data during a certain range.
How do I do this?
After I run the script I can extend the time the script is running by putting a pause command, but I want the script to continue for an indeterminate amount of time, basically until the user closes it.
  댓글 수: 3
John Hackett
John Hackett 2018년 3월 10일
Thanks, uiwait was exactly what I needed, no clue why google didn't return something like that.
Walter Roberson
Walter Roberson 2018년 3월 10일
See also waitfor()

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

답변 (1개)

Ahmet Cecen
Ahmet Cecen 2018년 3월 10일
uiwait will probably halt the execution completely. I think you want the program to keep running until the figure is closed instead.
I am not entirely sure yet as I am not in front of a computer, but I believe you can do this instead:
f = imagesc; %Some Figure
while size(findobj(f))>0
'me' %some action
pause %some input
end
So if at any point the user closes the figure, your routine will break out of the while loop after the current iteration executes.
  댓글 수: 2
per isakson
per isakson 2018년 3월 10일
편집: per isakson 2018년 3월 10일
Invoke this line and close the figure interactively
>> h = figure; uiwait(h); disp('figure closed')
Ahmet Cecen
Ahmet Cecen 2018년 3월 10일
편집: Ahmet Cecen 2018년 3월 10일
Ok can check things now. If I did this:
k = figure;
uiwait(k)
'me' %some action
pause %some input
'me' doesn't get printed until the figure is closed. My impression from above from reference to a "live" figure is that he wants to program to run and update the figure "as long as" the figure is open, like plotting the reading from a sensor while figure is present. Unless I am making a mistake somewhere uiwait is instead choking the execution, so the figure will not update.
Where as this:
k = figure; %Some Figure
while size(findobj(k))>0
'me' %some action
pause %some input
end
makes it so that while the figure is open, you can keep pressing stuff and "me" will keep printing, so the program is still running and the loop is iterating.
Will leave it to the poster to choose the snippet that he intended to ask for. Apparently he meant to choke the execution instead.

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

카테고리

Help CenterFile Exchange에서 Historical Contests에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by