Matlab 2014b slow work and initialization time
이전 댓글 표시
I have been experiencing slow loading and initialization time after upgrading to Matlab 2014b under an academic license. I'm using a 64 bit win 7 computer and from my understanding it may have to do with the license type, having it being checked online every time the program starts.
It is almost impossible to work this way due to delays in running the simplest of functions after a 5 minutes waiting period it takes for it to finish initialization. Can someone recommend me a solution for this problem besides disconnecting the internet while working ?
Thanks in advance
댓글 수: 4
Nicholas Fugal
2015년 2월 27일
I'm having similar problems, but my license is stand alone. My work is ~4x slower than with 2014a. Here's a simple benchmark:
2014a
>> tic; rand(10000); toc
Elapsed time is 0.939693 seconds.
2014b
>> tic; rand(10000); toc
Elapsed time is 4.373437 seconds.
I also noticed that 2014a ran at approximately the same slow speed as 2014b if 2014b was open at the same time.
Image Analyst
2015년 2월 27일
Try getting a new computer. Here are my times:
>> tic; rand(10000); toc
Elapsed time is 0.870282 seconds.
Adam
2015년 2월 27일
Also don't just trust a time from a single first-time run of a function. Function caching and other factors can have a significant effect on function call time if you use a function multiple times e.g.
>> tic; rand(10000); toc
Elapsed time is 3.615152 seconds.
>>
>>
>> tic; rand(10000); toc
Elapsed time is 1.628210 seconds.
>>
>>
>> tic; rand(10000); toc
Elapsed time is 1.394690 seconds.
Reese
2015년 3월 16일
I am having the very same problem, also on an academic license. I have just upgraded to 2015a and i'm still having the same problem of slow initializing time > 8 minutes.
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Startup and Shutdown에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!