in matlab 2019a, profiler does not work correctly
Mostrar comentarios más antiguos
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 comentario
I also want to ask this question!
Respuesta aceptada
Más respuestas (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 comentarios
zhizhuo
el 14 de Jul. de 2019
Adam Danz
el 15 de Jul. de 2019
What are you timing? If it's a custom function, could you attach it along with some example inputs?
zhizhuo
el 2 de Ag. de 2019
zhizhuo
el 3 de Ag. de 2019
Adam Danz
el 3 de Ag. de 2019
Glad the reinstall worked!
Adam Danz
el 17 de Sept. de 2019
update: I un-accepted my answer and will accept Eric's answer since it seems to fix the problem for several people.
Categorías
Más información sobre Introduction to Installation and Licensing en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!