Unable to set/get uisimvartuner's variables (Simulink/Appdesigner)
1 回表示 (過去 30 日間)
古いコメントを表示
This is for a GUI used to drive a simulink simulation.
The uisimvartuner widget works as expected: Block parameters from the simulink model appear in the UI.
These parameters' values can be changed before / during the simulation. The simulation clearly uses the updated parameters through the uisimvartuner as soon as these are changed.
To write a simulink data dictionary I want to get the values from all the variables in the uisimvartuner, but cannot find a way of accessing those from the UI code section in appdesigner.
The Block parameters values were defined as variables in the model workspace. If one of the variable gets adjusted in the uisimvartuner widget before/during the simulation, the model workspace is not updated with the new value.
2 件のコメント
Hitesh
2025 年 5 月 14 日
Hi Marc,
"uisimvartuner" (Simulink Variable Tuner widget) allows you to interactively tune block parameters during simulation, but these parameter values are managed internally by the simulation engine and are not automatically reflected in the model workspace or accessible as simple variables from MATLAB code running outside the simulation context.
採用された回答
Govind KM
2025 年 7 月 23 日
編集済み: Govind KM
2025 年 7 月 23 日
Hi Marc,
The block values modified via the "uisimvartuner" component can be accessed from the "Variables" property of the "simulink.Simulation" object. You can add a button which, when clicked, reads the desired values from the "Variables" property and writes them to a file.
More information on the "simulink.Simulation" object can be found in the following documentation page: https://www.mathworks.com/help/releases/R2024b/simulink/slref/simulink.simulation.html#mw_460d5250-0e5e-4ef1-be5f-fe91e9631113
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Programmatic Model Editing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!