Matlab 2014b slow work and initialization time

1 view (last 30 days)
Amir
Amir on 28 Dec 2014
Commented: Reese on 16 Mar 2015
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 Comments
Adam
Adam on 27 Feb 2015
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
Reese on 16 Mar 2015
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.

Sign in to comment.

Answers (0)

Categories

Find more on Introduction to Installation and Licensing in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!