필터 지우기
필터 지우기

matlab GUI starts very slow, possible to speed up?

조회 수: 10 (최근 30일)
legendbb
legendbb 2013년 5월 13일
As subject,
Thanks,
  댓글 수: 2
Sean de Wolski
Sean de Wolski 2013년 5월 13일
We need to know a little more.
  1. Is it a GUIDE GUI?
  2. Is it a programatic gui or a class?
  3. What initializations happen?
  4. How extensive is it?
legendbb
legendbb 2013년 5월 14일
Thanks for all comments, it's a GUIDE GUI with about 150 objects (compiled size 1.22MB); initialization if it's in OpeningFcn() does nothing other than default.
All I can imaging is the time took to linked with MCR. It can tool to 15 sec to open up.
Thank you very much for Jan's point about profiler. I will dig in.

댓글을 달려면 로그인하십시오.

답변 (2개)

Walter Roberson
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.

Jan
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.

카테고리

Help CenterFile Exchange에서 Graphics Performance에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by