Calling mex function from within Simulink

144 ビュー (過去 30 日間)
Octav Chipara
Octav Chipara 2012 年 4 月 29 日
Hi,
I have been struggling to get a matlab function to compile in Simulink. I managed to compile it with the Coder and I have a mex file handy. However, in simulink, the same function does not compile using the Simulink coder. It is complaining about some dependencies which seem to be present when invoking the coder. Is there a simple path to invoke the mex file created with the Coder?
Thanks, -- Octav
  1 件のコメント
Friedrich
Friedrich 2012 年 4 月 30 日
Simulink uses S-functions which is a different principle as MATLAB uses mex files. Since you have a nice mex file, why not simply use a matlab function block and call the mex from there?

サインインしてコメントする。

採用された回答

Kaustubha Govind
Kaustubha Govind 2012 年 4 月 30 日
As Friedrich mentioned in his comment, MATLAB MEX-functions can be invoked from a MATLAB Function block, but they are not supported for code-generation. You will need to convert your MEX-function to an S-Function and call that using an S-Function Block. Typically it is recommended that you write a TLC file to inline the S-function in generated code, but even without a TLC file, you can generate code by checking the Support: non-inlined S-functions checkbox in the Configuration Parameters window. Note that the generated code is not very efficient for non-inlined S-functions because it needs to dispatch calls to the S-function loaded as a shared library, and passes around a large object called the SimStruct.
  1 件のコメント
Martijn
Martijn 2012 年 5 月 29 日
Dear Kaustubha, How can I convert the MEX-function to an S-function?

サインインしてコメントする。

その他の回答 (1 件)

Martijn
Martijn 2012 年 5 月 29 日
I am running into a simular problem as described above. I am looking for more specific information on how to construct an S-function from a large collection of C++ routines, headers etc.
I need to implement a nonlinear solver as a Simulink S-function such that it is code-generation for XPC-target and Windows-target code-generation is possible. I am using the IPOPT solver (<http://www.coin-or.org/download/source/Ipopt/)>, which consist of a large set of C++ routines, headers etc.
This is what I've tried so far: • Since I already have a mex-file (OptiToolbox Opensource) I thought it would be convienent to use that inside a simple 'Matlab Function'-block. This works in Simulink, but the code generator cannot compile the Simulink diagram to a real-time executable code. • Creating an S-function in which I call the .mex function. This code cannot be compiled since the .tlc file is missing.
After some search on fora and Matlab central, I found out that I should create a C MEX S-function and compile it. To make life easier, Simulink comes with an S-function builder in which libraries etc. can be added. However, I failed in constructing one and it is driving me crazy.
Who has experience in using a nonlinear solver as an S-function in Simulink?
  1 件のコメント
TAB
TAB 2012 年 5 月 30 日
See my answer of your question
http://www.mathworks.com/matlabcentral/answers/39764-convert-a-mex-function-to-an-s-function

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeSimulink Coder についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by