Matlab GUI OPening Slowly
3 次查看(过去 30 天)
显示 更早的评论
Dear all,
I have an issue with my Matlab GUI I compiled with Matlab version R2013a. Once the executable is made by compiling the source code, it takes nearly 2 minutes to open the interface for the first time. From the next time onwards it takes around 30 - 40 sec to open the interface.
- The executable formed after compiling is about 23Mb
- The log file formed after compiling which shows the functions excluded is around 90Mb
- I don't have any 'addpath', 'genpath' , 'uigetdir' functions in my code.
- My main source code is nearly 254Kb and it calls some 30 other function files
- I don't nothing in my OpeningFcn expect setting a single variable for version number
Once the GUI interface is opened it gives me correct answers as expected.
Any suggestion on what possibly can be the reason ??
Thanks,
Jeena
0 个评论
回答(3 个)
Image Analyst
2014-2-21
This is totally normal. Everyone complains about the time it takes to launch compiled apps, especially the first time. Join the club.
0 个评论
Walter Roberson
2014-2-21
Compile a non-GUI program that just does something like display "hello world". Time how long it takes to start up. It will likely be not much different.
0 个评论
Jeena
2014-2-24
1 个评论
Image Analyst
2014-2-24
Does not make sense to me. I thought the MCR had all the functions you might need, whether you used them or not. I don't think the MCR has any toolbox functions built in, but I could be wrong. And your executable has instructions on what basic functions your app calls plus embeds toolbox functions that you own but are not in the MCR. When you run your app for the first time it unpacks a bunch of stuff from the CTF archive to a directory structure where you can see all the stuff it included, though this is usually in a fairly hidden folder. So I wouldn't think uninstalling unneeded toolboxes would make your app much smaller or faster.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!