Reputation: 96448
In the MATLAB documentation I see the following :
My question is: What is
DetailLevel
for ? What does the default value mmex
mean? I couldn't find an explanation of these keywords on the official documentation.
Upvotes: 1
Views: 159
Reputation: 2571
It's for an old feature of the profiler, which is now undocumented. The DetailLevel
property controls which functions are profiled; if it is 'mmex'
then M-functions, subfunctions and MEX-functions will be profiled, while if it is 'builtin'
, builtins will be profiled as well.
There used to be a third level, 'operator'
, which would even profile things like +
.
Upvotes: 1