Calling mex function from within Simulink
Mostrar comentarios más antiguos
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 comentario
Friedrich
el 30 de Abr. de 2012
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?
Respuesta aceptada
Más respuestas (1)
Martijn
el 29 de Mayo de 2012
0 votos
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 comentario
TAB
el 30 de Mayo de 2012
See my answer of your question
http://www.mathworks.com/matlabcentral/answers/39764-convert-a-mex-function-to-an-s-function
Categorías
Más información sobre Simulink Coder 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!