GUI profiler: slowest at FileOpenChooser.doShowDialog
1 次查看(过去 30 天)
显示 更早的评论
I am making a fairly large GUI (not a whole lot of data, but different GUI screens and a lot of tables, buttons, etc.), and as I add more functionality, it just gets slower and slower. I just ran the profiler, and the highest "self-time" section was FileOpenChooser.doShowDialog at 9.062s. I wonder what might be the cause for this - is it just the amount of GUI buttons and tables that I use? I'm not sure what information I can provide to help further on here.
As a note, I'm a bit confused about using the uitabs (so I'm not currently doing that),but I like using GUIDE since there are so many parts to the GUI, so I can set it up visually which I like. As the GUI is now, it's like a poor version of tabs. Based on what configuration the user seects, a different set of uipanels will become visible, so when I see the GUI in guide, it's just all the uipanels overlapping. I realize this is not good. I'd like to be able to use guide to make my different screens for the user in a more efficient way, but I'm just not sure what the best method is.I don't want one GUI to close and another to open -- it should be a seamless transition.
Sorry this is sort of a ramble. Any input would be appreciated.
5 个评论
Geoff Hayes
2014-7-11
@katerina: how many widgets (roughly) are a part of your GUI, and how many lines of code in the m file? (Since you can't attach the code.)
回答(1 个)
Robert Cumming
2014-7-11
编辑:Robert Cumming
2014-7-11
This could be misleading as the time (FileOpenChooser.doShowDialog) also covers the time it takes the user to select the file and then select okay.
Your gui may be slow if you have lot and lots of objects, including ones that are hidden or not been deleted properly.
Does restarting Matlab speed it up again (if so you have the equivalent of a memory leak and objects are not getting cleared/cleaned up properly).
Try:
objs = findobj ( 0 );
set(0,'showhiddenhandles','on');
allObj = findobj ( 0 );
this will show how many objects matlab knows about.
If you close your gui the number should return to 0.
3 个评论
Robert Cumming
2014-7-11
Run the lines again when the gui is alive and again after you close the gui.
另请参阅
类别
在 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!