필터 지우기
필터 지우기

coder.extrinsic

조회 수: 12 (최근 30일)
ECE09 ITBHU
ECE09 ITBHU 2011년 8월 6일
댓글: Walter Roberson 2018년 3월 15일
every time i try to convert some matlab file using any pre-defined functions in between i am instructed by code generation report error of matlab coder 2.0 @MATLAB Ra2011 that i should call function using "coder.extrinsic('function name')
is it necessary to call every time?

채택된 답변

Kaustubha Govind
Kaustubha Govind 2011년 8월 6일
Yes, it is necessary to declare functions unsupported for code generation using coder.extrinsic. See Calling MATLAB Functions in the MATLAB Coder documentation for further explanation. Note that you should not use extrinsic function calls if you are generating standalone C/C++ code. This is meant for generating MEX-functions from MATLAB code, where all extrinsic calls are actually dispatched to the MATLAB interpreter.
  댓글 수: 2
Emmanuel Luevano
Emmanuel Luevano 2012년 12월 5일
hello, I have a doubt, If I declare an sub-function as extrinsic, I understand that embedded coder does not generate code for that, If the extrinsic function gives me a result that may vary according to the same input and it result is need for others blocks in simulink
how suppose the complete code will work in the processor if the code is not complete, as it did not generate the code for the extrinc function, it works so, or I'm getting consufe.
the other hand, I know that I should declare the type of variable in embedded editor from simulink before use it, when I declared a variable in a function, it name is exclusive just in that function or in all the file.
I hope you can clear up my doubts greetings, thanks
Kaustubha Govind
Kaustubha Govind 2012년 12월 27일
Variable names should be exclusive within their scope - for local variables, their scope is limited to the function, so unless their names clash with some global variables, you should be fine.
Did you mean to say that your code works correctly even though you generated standalone code from a function that calls extrinsic functions? Perhaps the default value specified for it's output is also the expected value of the function if it executed?

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

추가 답변 (1개)

Selva Karna
Selva Karna 2018년 3월 15일
편집: Walter Roberson 2018년 3월 15일
Kaustubha Govind
i have get in error while almost use, coder.extrinsic('applycform');, its not support for code generation, how to solve this.

Community Treasure Hunt

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

Start Hunting!

Translated by