Unable to set/get uisimvartuner's variables (Simulink/Appdesigner)
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Marc
el 13 de Mayo de 2025
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 comentarios
Hitesh
el 14 de Mayo de 2025
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.
Respuesta aceptada
Govind KM
el 23 de Jul. de 2025
Editada: Govind KM
el 23 de Jul. de 2025
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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Programmatic Model Editing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!