Error in Matlab2017b coder: the extrinsic function "size" is not available for standalone code generation.

조회 수: 3 (최근 30일)
m-scripting file is executing without errors. While generating the C-code using "Coder", i am getting the errors for the functions "Size" and "xmlread". Erros is attached for reference.
.
  댓글 수: 2
Matan Silver
Matan Silver 2023년 9월 14일
Hi Pradeep,
To best investigate some of these errors and help you resolve them, could you provide a short reproduction script that will produce these errors?
I will try to help as much as I can with the information here. Are you explicitly declaring certain functions extrinsic using "coder.extrinsic"? If so, the errors relating to standalone code generation are accurate--standalone code can't use the output of extrinsic functions because that requires calling into MATLAB (and standalone code must work without MATLAB).
Regarding the function "xmlread" which you mentioned--"xmlread" does not support code generation. The development team is aware of this limitation. There are a few workarounds to the lack of support for now:
None of those solutions will read from an xml file, but if you use a different file format for this application, you might be able to use one of those options.
Let me know if you can upload some reproduction examples. Thanks,
Matan
Pradeep Kumar Boggarapu
Pradeep Kumar Boggarapu 2023년 9월 20일
Dear Marthan,
Thank you.
Any supporting documnet which contains the list of unsupported functions for the Matlab coder.
At present, I cannot share the code.
Thank you very much.
With regards,
Pradeep Kumar

댓글을 달려면 로그인하십시오.

채택된 답변

Denis Gurchenkov
Denis Gurchenkov 2023년 9월 26일
편집: Denis Gurchenkov 2023년 9월 26일
size() is supported for code generation, this is one of the basic functions that always works. To understand why the error happens, one needs to see the source code of the example. This is either a bug or some misconfiguration. Maybe you try to call size on the return value of an extrinsic function? If so, read the chapter on extrinsic functions here
As Matan said, xmlread() does not support code generation. You'd need to use coder.ceval to call to some thrid-party xml reading library.
> Any supporting documnet which contains the list of unsupported functions for the Matlab coder.
Documentation for each MathWorks toolbox function has the "extended capabilities" section at the bottom, and if the function supports code generation, that capability is listed there, along with any limitations. If there is no extended capabilities section, then the function does not support code generation.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB Coder에 대해 자세히 알아보기

제품


릴리스

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by