Matlab GUI OPening Slowly
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Antworten (3)
Image Analyst
am 21 Feb. 2014
This is totally normal. Everyone complains about the time it takes to launch compiled apps, especially the first time. Join the club.
0 Kommentare
Walter Roberson
am 21 Feb. 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 Kommentare
Jeena
am 24 Feb. 2014
1 Kommentar
Image Analyst
am 24 Feb. 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.
Siehe auch
Kategorien
Mehr zu MATLAB Compiler finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!