Changing the value of 'compare to constant' and 'repeating sequence interpolating' blocks using GUI
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Hello everyone!
i have a simulink model which consists of ' compare to constant (<=) ' and ' repeating sequence interpolating ' blocks.
i am required to create a GUI to change the value of the blocks. however, i do not know how to do it.
anyone is able to provide me with some information?
Thanks in advance!
0 Commenti
Risposte (1)
Abhilash Padma
il 17 Lug 2019
Hi,
I understand that you have two blocks in Simulink, and you want to create a GUI to change the value of this blocks.
You can do this by creating an app in app designer with two Edit Field components.
In the “ValueChangedFcn” of Edit Field components, you can use “set_param” function to set the value of your required Simulink block.
The syntax of “set_param” function is as follows,
set_param(‘modelName/BlockName’ , ‘BlockParameterName’, value);
For more information, refer the following links:
0 Commenti
Vedere anche
Categorie
Scopri di più su Schedule Model Components 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!