How to change model properties of a .slx simulink model using the MATLAB script

11 vues (au cours des 30 derniers jours)
Hello,
I am working on automated test scripts which involve calling mulltiple simulink models from inside a single simulink model. So I would like to access and edit the model porperties of all these simulink files at once using a matlab script.
For example, in the picture, I want to change the design Data definition from Base Workspace to Data Dictionary without having to open the simulink model and going to model properties, but directly from the command window. Does anyone know a way for it?

Réponse acceptée

Mark McBroom
Mark McBroom le 6 Mar 2021
Model configuration settings can be controlled from MATLAB code using the get_param() and set_param() functions. Help will tell you the name of the parameter. In this case:
set_param(modelName,'DataDictionary',dictionaryName);
  3 commentaires
Mark McBroom
Mark McBroom le 7 Mar 2021
set_param(modelName,'DataDictionary','')

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Programmatic Model Editing dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by