How to change Index search settings for 1D and 2D Lookup tables through a script?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (0)
Ver también
Categorías
Más información sobre Lookup Tables 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!