Borrar filtros
Borrar filtros

How to set "Argument" property of a Simulink.Parameter programmatically ?

7 visualizaciones (últimos 30 días)
Agha
Agha el 30 de Nov. de 2023
Editada: Fangjun Jiang el 3 de Abr. de 2024
Hello,
I am trying to find a way to programmatically (in MATLAB) set the "Argument" property of a Simulink.Parameter Object which is defined in a Model Workspace.
Using the function getVariablePart this way:
setVariablePart(ModelWorkspace,'Parameter.Argument','on')
will result in following error:
Unrecognized property 'Argument' for class 'Simulink.Parameter'.
Would be very helpful if someone could help.
Kind regards

Respuestas (2)

Jerbin J
Jerbin J el 19 de Feb. de 2024
% To set Argument property of a Simulink.Parameter
% a ,b ,c are parameters in model workspace
set_param(bdroot,'ParameterArgumentNames','a,b,c');
% To uncheck Argument property of a Simulink.Parameter, remove it from the command
set_param(bdroot,'ParameterArgumentNames','a,c');
  1 comentario
Fangjun Jiang
Fangjun Jiang el 19 de Feb. de 2024
This approach can set the 'ParameterArgumentNames' property of the model itself, but it can not set the 'ParameterArgumentNames' of the "Model" block that references the model.
>> set_param(bdroot,'ParameterArgumentNames','a,b,g')
>> gcb
ans =
'untitled/Model'
>> set_param(gcb,'ParameterArgumentNames','a,b,g')
ModelReference block parameter 'ParameterArgumentNames' is read-only

Iniciar sesión para comentar.


Fangjun Jiang
Fangjun Jiang el 30 de Nov. de 2023
Editada: Fangjun Jiang el 3 de Abr. de 2024
See below, A Simulink.Parameter object does not have a property called "Argument".
a=Simulink.Parameter
a =
Parameter with properties: Value: [] CoderInfo: [1×1 Simulink.CoderInfo] Description: '' DataType: 'auto' Min: [] Max: [] Unit: '' Complexity: 'real' Dimensions: [0 0]
Update after the discussion in comments. Follow the instruction below
  4 comentarios
Paul
Paul el 1 de Dic. de 2023
That doc page inludes this statement: " If you decide to re-promote these arguments, set the Argument field to true. "
What does "re-promote" mean?
Fangjun Jiang
Fangjun Jiang el 1 de Dic. de 2023
Editada: Fangjun Jiang el 1 de Dic. de 2023
My understanding.
The first part of the document describes how to set up parameters for the model (or it is called model arguments). So the "Argument" option checkbox for those two parameters are checked.
The second part describes how to use multiple instances of this model. But when referencing the model, the "Argument" option checkbox for those two parameters are un-checked by default, which means, for any instances, the value for those parameters is still taking the default value in the referenced model and not passed from the main model. The user have to re-check the "Argument" option checkbox at the interface of the particular instance (programmingly or manually, right click the reference block, Block Parameters ModelReference, Instance Parameters) to bring it to the interface of the model block and provide values from the workspace of the main model.
"Promote" probably means to move the parameter from internal to the interface. The first part says "promote it myself" or " make it possible to be promoted". The second part says (from external) "not promoted by default", but a user can "promote it explicitly" or "re-promote".

Iniciar sesión para comentar.

Categorías

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

Productos


Versión

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by