- Is it a GUIDE GUI?
- Is it a programatic gui or a class?
- What initializations happen?
- How extensive is it?
matlab GUI starts very slow, possible to speed up?
8 ビュー (過去 30 日間)
古いコメントを表示
As subject,
Thanks,
2 件のコメント
Sean de Wolski
2013 年 5 月 13 日
We need to know a little more.
回答 (2 件)
Walter Roberson
2013 年 5 月 14 日
Probably not much. You can reduce the number of directories in your matlab path to reduce some of the startup time. You can pcode your files to reduce execution time a little (probably not much unless your code is huge.)
You can make sure your computer has lots of memory, and have something that reads all of your files ahead of time so that they are in disc cache. This is done automatically on MS Windows systems in quite new versions of MATLAB.
If you are accessing hard-disk, you can move everything onto solid state storage.
0 件のコメント
Jan
2013 年 5 月 14 日
The profiler reveals, where the most time is spent. I suggest to find this bottleneck and post the code here.
In a complex GUI with a lot of elements, the rendering cna consume a lot of time. So add a drawnow inside the code, otherwise the profiler cannot consider the correpsonding time, because the rendering is started, when the control returns to the command line and therefore after the profiler has finished the measurements.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Graphics Performance についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!