MATLAB: What is the BlockType name for Lookup Tables

apicommand linelookup tableMATLABsimulink

I need to change the parameters of a number of tables in my Simulink model. However the following
Search_Path = 'MyModel/MySubsystem';
blks = find_system(Search_Path,'BlockType','Lookup Table (n-D)')
produce
blks =
Empty cell array: 0-by-1
but the proposed solution does not seem to work.

Best Answer

Have you tried with:
blks = find_system(Search_Path,'BlockType','Lookup_n-D');