Matlab GUI OPening Slowly
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponses (3)
Image Analyst
le 21 Fév 2014
This is totally normal. Everyone complains about the time it takes to launch compiled apps, especially the first time. Join the club.
0 commentaires
Walter Roberson
le 21 Fév 2014
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 commentaires
Jeena
le 24 Fév 2014
1 commentaire
Image Analyst
le 24 Fév 2014
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.
Voir également
Catégories
En savoir plus sur MATLAB Compiler dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!