How to Fix Error "The extrinsic function 'toc' is not available for standalone code generation."
Mostrar comentarios más antiguos
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;
1 comentario
Kuber Dwivedi
el 8 de Jun. de 2022
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Function Definition en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!