in matlab 2019a, profiler does not work correctly
Ältere Kommentare anzeigen
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 Kommentar
I also want to ask this question!
Akzeptierte Antwort
Weitere Antworten (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 Kommentare
zhizhuo
am 14 Jul. 2019
Adam Danz
am 15 Jul. 2019
What are you timing? If it's a custom function, could you attach it along with some example inputs?
zhizhuo
am 2 Aug. 2019
zhizhuo
am 3 Aug. 2019
Adam Danz
am 3 Aug. 2019
Glad the reinstall worked!
Adam Danz
am 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.
Kategorien
Mehr zu Introduction to Installation and Licensing finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!