Creating a standalone .exe of an .m file that calls a simulink model
38 views (last 30 days)
Show older comments
Thaddäus Wiedemer
on 19 Jul 2017
Commented: Chris P
on 12 May 2020
Hi,
I have a .m file that controls a gui. A slider in the gui is used as input for a simulink model. My goal is to create a standalone of this whole application, that runs on a PC where neither Matlab nor Simulink are installed.
My approach so far is to generate a standalone .exe out of the simulink model, modify the .m script to pass the input values to this .exe and get the output values, and then generate a .exe out of the .m script.
I have several questions on how to do this:
- Is this the correct approach or would it be better to create a dll out of the simulink model?
- If this is the way to go, which target in the code generation allows the easiest passing of values to the simulink model .exe? I found three different options: ert_shrlib (host based shared library), grt (Generic Realtime Target) and rsim (Rapid Simulation Target). Which of these should I use?
- Are there any step-by-step instructions on how to accomplish this? Or even examples of a similar project?
Thanks you very much!
0 Comments
Accepted Answer
Saurabh Gupta
on 21 Jul 2017
One way would be to generate code from MATLAB Code and Simulink model independently, integrate them manually and compile them together into an EXE. But since GUI related functions are generally not supported by MATLAB Coder, this approach may not work.
You could try the following approach:
1) generate shared library from the Simulink model, then write C/C++ Application Code as a wrapper to pass input/parameter values,
3) call it in your MATLAB Code and
All the best!
3 Comments
Saurabh Gupta
on 12 Oct 2017
Hi Michael,
Only a shared library is not sufficient, you also need to write application code as a wrapper that uses it. Then, mex this combination of application code with the library, and replace the sim calls with the corresponding calls to your MEX API before creating the executable.
Hope this helps!
More Answers (3)
Guy Rouleau
on 22 Apr 2020
In R2020a, a new product Simulink Compiler has been released to address this exact use case. See an example here.
3 Comments
Chris P
on 12 May 2020
Great, thanks Sean.
I was wanting to integrate a Simulink model into a GUIDE based analysis tool I was working on a while back, but in speaking to your colleagues found it wasn't possible ...at the time!
I appreciate your suggestion to migrate to App Designer too, but I recall there were some things I wasn't able to do in App Designer that I could with GUIDE, but again, maybe this has moved on since and will add to my to-try list!
Thanks again.
Ewoud Meijvogel
on 6 Mar 2019
Hey @Saurabh Gupta,
I have stumbled into to same situation. Is this approach worth taking a shot.
Have you been succesfull in making a standalone?
Thank you in advance,
Ewoud Meijvogel
0 Comments
Lars Risbo
on 8 Nov 2018
@saurabh
Do you have a complete example that I can follow? I have no idea on how to write the wrapper code. I have seen such an example somewhere but the link has gone bad.
Best regards,
Lars
1 Comment
sergio martinez
on 23 Nov 2018
I have the same lack in the solve of the problem, I have no idea how to write the wrapper code, could anyone help us to sucess on it?
Regards
Sergio
See Also
Categories
Find more on Simulink Coder in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!