What is the BlockType name for Lookup Tables?
6 次查看(过去 30 天)
显示 更早的评论
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
I have found this thread: https://se.mathworks.com/matlabcentral/answers/101181-how-can-i-use-find_system-to-find-the-lookup-table-n-d-block-in-a-model-in-simulink-6-6-r2007a
but the proposed solution does not seem to work.
0 个评论
采纳的回答
Ilham Hardy
2016-7-27
Have you tried with:
blks = find_system(Search_Path,'BlockType','Lookup_n-D');
2 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Nonlinearity 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!