How can I save the text in the model workspace variable description?

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)

 Accepted Answer

mw=get_param(bdroot,'ModelWorkspace');
a=mw.getVariable('Param');
>> s=get(a,'Description')
s =
'abc'

More Answers (0)

Categories

Products

Release

R2024a

Asked:

on 1 Aug 2024

Commented:

on 2 Aug 2024

Community Treasure Hunt

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

Start Hunting!