Info
この質問は閉じられています。 編集または回答するには再度開いてください。
How does the figure window show a photo and close itself in matlab gui ?
2 ビュー (過去 30 日間)
古いコメントを表示
What code should I use to self-close?
0 件のコメント
回答 (1 件)
Rik
2019 年 1 月 25 日
Use this in a callback:
close(gcbf)
Example:
f=figure(1);clf(1)
uicontrol('parent',f,...
'units','normalized',...
'position',[1/3 1/3 1/3 1/3],...
'String','Close me!',...
'Callback','close(gcbf)')
0 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!