How to change Index search settings for 1D and 2D Lookup tables through a script?

1 view (last 30 days)
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!

Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!