Undefined function or variable 'profile'.

2 views (last 30 days)
Please hELp
Trying to execute profile with a standalone script compiled with Compiler version: 6.4 (R2017a), and getting the following error
profile off;
if isequal(profile_mode, 'on')
profile on;
end
->
Undefined function or variable; 'profile'.

Accepted Answer

per isakson
per isakson on 13 Dec 2018
Edited: per isakson on 13 Dec 2018
Documentation says:
MATLAB® Compiler™ supports the full MATLAB language and almost all toolboxes based on MATLAB except:
  • Most of the prebuilt graphical user interfaces included in MATLAB and its companion toolboxes.
I assume that profile belongs to the exceptions
  2 Comments
Gal Lev
Gal Lev on 13 Dec 2018
As suspected... :(. Many Thanks for the confirmation
Andreas Urbán
Andreas Urbán on 22 Feb 2022
Edited: Andreas Urbán on 22 Feb 2022
Seems like ismcc() can be used for a sort of conditional compilation. Inspired by Test if code is running during compilation process (using mcc) - MATLAB ismcc - MathWorks Nordic:
if ~(ismcc || isdeployed)
profile off;
if isequal(profile_mode, 'on')
profile on;
end
end

Sign in to comment.

More Answers (1)

Philip Borghesani
Philip Borghesani on 13 Dec 2018
Per is correct. The profiler is not currently supported by the compiler. However the primary reason for this is that there have been few if any requests for support and we are not sure what a valid use case would be. In addition only command access would be availible (profile('info') not the viewer). If you have a strong need for this and are willing to work it through I suggest contacting support.

Categories

Find more on MATLAB Compiler 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!