- Most of the prebuilt graphical user interfaces included in MATLAB and its companion toolboxes.
Undefined function or variable 'profile'.
1 回表示 (過去 30 日間)
古いコメントを表示
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'.
0 件のコメント
採用された回答
per isakson
2018 年 12 月 13 日
編集済み: per isakson
2018 年 12 月 13 日
Documentation says:
MATLAB® Compiler™ supports the full MATLAB language and almost all toolboxes based on MATLAB except:
I assume that profile belongs to the exceptions
2 件のコメント
Andreas Urbán
2022 年 2 月 22 日
編集済み: Andreas Urbán
2022 年 2 月 22 日
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
その他の回答 (1 件)
Philip Borghesani
2018 年 12 月 13 日
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.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で MATLAB Compiler についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!