Creating a standalone .exe of an .m file that calls a simulink model
Show older comments
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!
Accepted Answer
More Answers (3)
Guy Rouleau
on 22 Apr 2020
5 votes
In R2020a, a new product Simulink Compiler has been released to address this exact use case. See an example here.
4 Comments
Chris P
on 11 May 2020
Thanks for the update on this, Guy - sounds like a great addition!
Quick question (hopefully!), I haven't yet downloaded R2020a on my Windows machine to try... but does this only work with GUIs developed in APP Designer? i.e. it won't work with GUIs created with GUIDE?
Many thanks,
Chris
Sean de Wolski
on 11 May 2020
It will work with GUIDE authored UIs. You don't even need to have a UI around the sim if you don't want to as it's separate from the UI...
Of course, you should strongly consider using the GUIDE to App Designer migration tool to upgrade.
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.
RANJITH
on 25 Sep 2024
Hey Chris! I am facing a similar issue.
I have a simulink model which takes inputs from a GUI that i made using the app designer. I want to deploy it as a standalone application with the UI. The user inputs values in the UI and can see the graphical results on the UI.
in my appdesginer code view, i have the following lines of code: The code runs smoothly when i run all these in my MATLABR2023b environment. But ,When I package this as an app and run the same application, My code is not executed beyond the Deployment line. I tried using a logfile to see where it gets stuck and it is the line that shows "Deployment". I clearly hear a bong sound (the error sound) while i run the app. The logfile has "5 before Configured for deployment.." and thats it. No other info is logged into it.
A youtube video showed the same procedure for deploying an app that inlcudes a simulink model. But it doest work somehow. Did you try that procedure and did it work for you. It would be great if you could help.
fprintf(logFile, '4 All values initialised..\n');
fprintf(logFile, '5 before Configured for deployment..\n');
in = simulink().compiler.configureForDeployment(in); %%Deployment
fprintf(logFile, '5 Configured for deployment..\n');
out = sim(in); % Run simulation
out.logsout;
fprintf(logFile, '6 logsout command...\n');
Ewoud Meijvogel
on 6 Mar 2019
1 vote
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
Lars Risbo
on 8 Nov 2018
0 votes
@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
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!