in matlab 2019a, profiler does not work correctly

12 views (last 30 days)
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:
微信截图_20190707104647.png
is it a bug or something has changed? please help me!
  1 Comment
Adam Danz
Adam Danz on 2 Aug 2019
Edited: Adam Danz on 2 Aug 2019
XiaoJuan Tian's answer moved here as comment.
I also want to ask this question!

Sign in to comment.

Accepted Answer

Eric.N
Eric.N on 23 Aug 2019
This is in fact a system font problem. Probably due to the font default setting for chinese version.
Please set in preferences-> Font->Custom, the font for "Profiler" as "Desktop code" or any other available custom font. Then your problem will be solved. Good Lucky!
  4 Comments
zhizhuo
zhizhuo on 17 Sep 2019
It also works well for me. Thank you very much Eric!
zexi wang
zexi wang on 13 Jun 2020
Thanks very much, it works really fine!!! I can't find any answer searching by Chinese LOL

Sign in to comment.

More Answers (1)

Adam Danz
Adam Danz on 9 Jul 2019
Edited: Adam Danz on 2 Aug 2019
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
If that doesn't work, try running the undocumented detail flag. (Thanks to Jan's answer here).
profile('on', '-detail', 'builtin')
  8 Comments
Adam Danz
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.

Sign in to comment.

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!