Compiled GUI not appearing
2 ビュー (過去 30 日間)
古いコメントを表示
I have been trying to compile a MATLAB based GUI and the code compiles without error. The GUI appears properly when running within MATLAB, but when I try to run the executable, the GUI itself does not appear, but is present in the Task Manager. While the program in question is a bit too large to post here, I have been able to duplicate the problem with a much smaller simple GUI. The m-file for the GUI is attached.
I am using MATLAB 2014A on 64 bit Windows 7 Professional.
4 件のコメント
Walter Roberson
2015 年 9 月 15 日
Does it make a difference if you add a .m that calls the constructor explicitly ?
採用された回答
その他の回答 (1 件)
Sean de Wolski
2015 年 9 月 15 日
編集済み: Sean de Wolski
2015 年 9 月 15 日
What Walter said.
function makeAtestGUI()
T = testGUI();
uiwait(T.h);
end
Now compile this.
0 件のコメント
参考
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!