How can I save the text in the model workspace variable description?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I want to save in as a string variable the text in the description of the simulink parameter that is in the simulink model workspace (image)

0 commentaires
Réponse acceptée
Fangjun Jiang
le 1 Août 2024
mw=get_param(bdroot,'ModelWorkspace');
a=mw.getVariable('Param');
>> s=get(a,'Description')
s =
'abc'
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Programmatic Model Editing dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!