Clear Filters
Clear Filters

How can I interact with a Simulink model from an App Designer app or MATLAB function using the 'sim' command?

11 views (last 30 days)
I use the 'sim' command to run a Simulink simulation using MATLAB code. I would like to define inputs and parameters for my model, as well as post-process the simulation output in MATLAB code.
As long as I use a simple MATLAB script, everything works fine, but once I try to do the same from within a MATLAB function or App Designer app, I get errors such as:
Variable 'simin' has been deleted from base workspace.
Unrecognized function or variable 'simout'.
How can I simulate the model in the function workspace?

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 24 May 2024
Edited: MathWorks Support Team on 27 May 2024
Rather than changing the workspace that Simulink interacts with, the recommended way to apply variable overrides from a function is to use the setVariable() method on SimulationInput objects. The simulation input object provides better containerization, traceability, and reuse across workflows. We recommend adapting your script to use the "SimulationInput" object:

More Answers (0)

Categories

Find more on Verification, Validation, and Test in Help Center and File Exchange

Products


Release

R2017b

Community Treasure Hunt

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

Start Hunting!