Amelio Vazquez-Reina
Amelio Vazquez-Reina

Reputation: 96448

MATLAB profiler. DetailLevel: mmex?

In the MATLAB documentation I see the following :

enter image description here 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

Answers (1)

reve_etrange
reve_etrange

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

Related Questions