deployed app exit when GUI appeared

조회 수: 3 (최근 30일)
raym
raym 2020년 12월 27일
편집: raym 2020년 12월 27일
Hi,
I have a function that shows a GUI with buttons and callbacks.
When running in matlab, it create the gui figure and release the command window, but callback still works when I click on GUI.
However, when I compiled it into exe, the GUI appears and immediately go sway and program exited.
Is there a way to hold the gui?
Thanks.

채택된 답변

Walter Roberson
Walter Roberson 2020년 12월 27일
Your flow of control does not waitfor() or uiwait() after creating the graphics, so you get to the bottom of the initialization loop and exit the program.
When you do not compile, then the graphics objects all keep existing because you have the keyboard to go back to for more interaction.
If you are using GUIDE, then look in the code generated for the GUI OpenFcn callback, and you will see a commented-out call to wait for the graphics window to close. Remove the comment marker so that wait becomes active.
  댓글 수: 1
raym
raym 2020년 12월 27일
편집: raym 2020년 12월 27일
Dear Roberson,
I did not used the GUIDE, but only a f = figure(...).
I add a bottom line
uiwait(f)
and found that the GUI is now stablized.
But when I test a simple function with only one line:
function test
f = figure;
end
I found that there is no problem with this function. The figure is stable, so the uiwait is not necessary from this point.
What could be the discrepancy between such similar scenarios?
Thanks.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by