How to change Index search settings for 1D and 2D Lookup tables through a script?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I would like to activate 'Begin index search using previous index result' for 1D and 2D Lookup tables in my model. I do not see any option to change from the block. Additionally, I prefer doing it with script file.
%....my script... lookupblks = find_system('mymdl','LookUnderMasks','all','FollowLinks','on','regexp','on','blocktype','Lookup'); fixBlks=lookupblks; default='on'; for i=1:length(fixBlks) set_param(fixBlks{i},'BeginIndexSearchUsingPreviousIndexResult',default); end %....... This code is working with only some of the blocks. I get the following error: 'Lookup2D block does not have a parameter named 'BeginIndexSearchUsingPreviousIndexResult' Any ideas? Thanks in advance!
0 Kommentare
Antworten (0)
Siehe auch
Kategorien
Mehr zu Lookup Tables 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!