How to bulk add model argument values to a referenced model
1 view (last 30 days)
Show older comments
Hello,
I am trying to add model argument values to referenced models. Because of the amount of arguments in these models, it is not practical to add them by hand.
I would like to know if there is a way to add them programatically, or better yet, paste a table of values on the fields below.
Thank you in advance.
0 Comments
Answers (1)
Sanman
on 5 May 2021
Hi Joao,
If I understand correctly, you’re trying to update the model reference instance parameters from the Block Parameters dialog. Copy pasting table content might not possible on this dialog, but you can achieve this programmatically.
“InstanceParameters” of the model reference block can be manipulated programmatically. Below is a small example:
>>values = {'1','43','23','123'};
>>instanceParams = get_param(gcb,"InstanceParameters");
>>for i = 1:4
instanceParams(i).Value = values{i};
end
>>set_param(gcb,"InstanceParameters", instanceParams);
You can refer to this documentation page for more info. https://www.mathworks.com/help/simulink/ug/parameterize-referenced-models-example.html
0 Comments
See Also
Categories
Find more on Event Functions 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!