Borrar filtros
Borrar filtros

How to bulk add model argument values to a referenced model

1 visualización (últimos 30 días)
João Araújo
João Araújo el 5 de Mayo de 2021
Respondida: Sanman el 5 de Mayo de 2021
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.

Respuestas (1)

Sanman
Sanman el 5 de Mayo de 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

Categorías

Más información sobre Programmatic Model Editing en Help Center y File Exchange.

Productos


Versión

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by