in matlab 2019a, profiler does not work correctly
Afficher commentaires plus anciens
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 commentaire
I also want to ask this question!
Réponse acceptée
Plus de réponses (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 commentaires
zhizhuo
le 14 Juil 2019
Adam Danz
le 15 Juil 2019
What are you timing? If it's a custom function, could you attach it along with some example inputs?
zhizhuo
le 2 Août 2019
zhizhuo
le 3 Août 2019
Adam Danz
le 3 Août 2019
Glad the reinstall worked!
Adam Danz
le 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.
Catégories
En savoir plus sur Introduction to Installation and Licensing dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!