How to Fix Error "The extrinsic function 'toc' is not available for standalone code generation."

The extrinsic function 'toc' is not available for standalone code generation. It must be eliminated for stand-alone code to be generated. It could not be eliminated because its outputs appear to influence the calling function. Fix this error by not using 'toc' or by ensuring that its outputs are unused.
Find below code
function y = fcn
%#codegen
persistent temp;
coder.extrinsic('tic')
if isempty(temp)
tic;
temp = 0;
end
coder.extrinsic('toc')
temp = toc;
y = temp;

 채택된 답변

The Code generation capabilities for Tic/Toc were added in R2019a. So you can use tic and toc without 'coder.extrinsic' in latest version of the MATLAB and that will resolve the code generation error.
https://www.mathworks.com/help/matlab/ref/tic.html#mw_9bdbc46b-87b1-492b-b0e6-caeb3e886db4
function y = fcn %#codegen
persistent temp;
if isempty(temp)
tic;
temp = 0;
end
temp = toc;
y = temp;

추가 답변 (0개)

제품

릴리스

R2021b

질문:

2022년 5월 30일

댓글:

2022년 6월 8일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by