How to use a script to select drop-down menu options of component in Simulink?
11 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello! I am using a simulator developed by another person in Simulink, and I want to test my simulation under different input parameters. The script I made is able to modify the values of the input boxes, but not to select options such as component names from drop-down menus. Is there any way to add this feature to my script?
When trying to make this in the same way as I did with numerical values for the boxes, using the set_param function, I got the following error:
??? Error using ==> set_param
Component block (mask) does not have a parameter named 'ComponentName'
Thank you!!
0 Kommentare
Antworten (2)
Fangjun Jiang
am 20 Jan. 2024
It is unlikely. This is dependent on that "simulator developed by another person in Simulink". Either it provides an API for you to do that, or you have the source code to figure out an entry point.
0 Kommentare
Andy Bartlett
am 30 Jan. 2024
If the entity you want to do set_param on is a block, then you can get a lot of information from DialogParameters.
The following code shows an example of programatically getting all the valid choices for a Product Blocks "Integer rounding mode" parameter.
mdl = 'foo';
new_system(mdl)
myBlk = [mdl,'/myProduct'];
add_block('built-in/Product',myBlk)
dp = get_param(myBlk,'DialogParameters')
dp.RndMeth
validChoicesForIntegerRoundingMode = dp.RndMeth.Enum
0 Kommentare
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!