How can I save the text in the model workspace variable description?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Adriel
am 1 Aug. 2024
Kommentiert: Adriel
am 2 Aug. 2024
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 Kommentare
Akzeptierte Antwort
Fangjun Jiang
am 1 Aug. 2024
mw=get_param(bdroot,'ModelWorkspace');
a=mw.getVariable('Param');
>> s=get(a,'Description')
s =
'abc'
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Programmatic Model Editing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!