What is the BlockType name for Lookup Tables?
조회 수: 5 (최근 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!