Main function of the gui.
2 ビュー (過去 30 日間)
古いコメントを表示
Hi, there are three main function in the .m file generated by GUI. I know three of them :opening function, output function and call back function. what is the name of the last one. have a nice day.
0 件のコメント
回答 (1 件)
Image Analyst
2014 年 6 月 4 日
You can see the main functions in this line:
gui_State = struct('gui_Name', mfilename, ...
'gui_Singleton', gui_Singleton, ...
'gui_OpeningFcn', @edf_OpeningFcn, ...
'gui_OutputFcn', @edf_OutputFcn, ...
'gui_LayoutFcn', [], ...
'gui_Callback', []);
Not all are mandatory. In particular, the ones with [] are not present in that GUI.
2 件のコメント
Image Analyst
2014 年 6 月 4 日
math search incorrectly posted this as an official "Answer" to the original question, so I'm moving it here:
How can I produce that line to see them on my computer?
Image Analyst
2014 年 6 月 4 日
If you use GUIDE, it's near the top of the m-file that GUIDE produced for you.
参考
カテゴリ
Help Center および File Exchange で Migrate GUIDE Apps についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!