in matlab 2019a, profiler does not work correctly
Show older comments
I just installed MATLAB 2019a and it seem that the profiler does not work correctly!
I am using matlab as academic user with academic licence, when I want to profile my code, I click Run and Time in the Code section On the Home tab, but after the code is finished, I get nothing but the total time in the profile summary like below:

is it a bug or something has changed? please help me!
1 Comment
I also want to ask this question!
Accepted Answer
More Answers (1)
It works fine for me (r2019a) when I time the following two lines.
t = randi(1000,60,1);
plot(1:60,t, 'o')
If the "Run and Time" button is not responding as expected, try running the profiler manually like this.
profile on
% < run your code >
profile viewer % This produces the report
profile off
profile('on', '-detail', 'builtin')
8 Comments
zhizhuo
on 14 Jul 2019
Adam Danz
on 15 Jul 2019
What are you timing? If it's a custom function, could you attach it along with some example inputs?
zhizhuo
on 2 Aug 2019
zhizhuo
on 3 Aug 2019
Adam Danz
on 3 Aug 2019
Glad the reinstall worked!
Adam Danz
on 17 Sep 2019
update: I un-accepted my answer and will accept Eric's answer since it seems to fix the problem for several people.
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!