How can I use FIND_SYSTEM to find the Lookup Table (n-D) block in a model in Simulink 6.6 (R2007a)?

조회 수: 2 (최근 30일)
I would like to be able to use FIND_SYSTEM to search for the Lookup Table (n-D) blocks in my model. However, when I try to find the block using the 'BlockType' parameter, it does not find it, as shown below:
>> find_system(gcs,'blocktype','Lookup Table (n-D)')
ans =
Empty cell array: 0-by-1

채택된 답변

MathWorks Support Team
MathWorks Support Team 2009년 6월 27일
The Lookup Table (n-D) block is actually an S-function block that points to the “sfun_lookupnd” S-Function. Therefore it can be found by specifying the block type to be S-Function, as shown below:
>> find_system(gcs,'blocktype','S-Function')
ans =
'testfindsys/Lookup
Table (n-D)'
The specific Lookup Table (n-D) blocks can also be found by looking for the S-function name “sfun_lookupnd”, using the ‘FunctionName’ parameter, as shown below:
>> find_system(gcs,'FunctionName','sfun_lookupnd')
ans =
'testfindsys/Lookup
Table (n-D)'

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Modeling에 대해 자세히 알아보기

태그

아직 태그를 입력하지 않았습니다.

제품


릴리스

R2007a

Community Treasure Hunt

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

Start Hunting!

Translated by