How can I save the text in the model workspace variable description?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposta accettata
Fangjun Jiang
il 1 Ago 2024
mw=get_param(bdroot,'ModelWorkspace');
a=mw.getVariable('Param');
>> s=get(a,'Description')
s =
'abc'
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Programmatic Model Editing 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!