Get editable parameters of blocks
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Dear all,
As we know, we can use get_param function for get value of parameter blocks which we know the parameter name.
Example:

We can get value of constant value parameter (name is 'Value') via:
>> get_param('Model/Constant', 'Value')
ans =
'2'
So, how to get all of edit-able parameters of all block in model ???
If we check one-by-one block, then take a long time. So do anyone have ideas for this task.
Many thanks,
0 Commenti
Risposte (1)
stozaki
il 7 Gen 2020
Thank you for your question about get_param function.
Please test :
allParams = get_param(gcbh, 'ObjectParameters');
Regards,
stozaki
0 Commenti
Vedere anche
Categorie
Scopri di più su Subsystems in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!