find_syste​m(Search_P​ath,'Searc​hDepth',1,​'BlockType​','Inport'​); what does this function do? specially what is search depth and value 1?

답변 (2개)

Akbar
Akbar 2018년 7월 18일
편집: Akbar 2018년 7월 18일
It is used to get paths to particular blocks in simulink model. In this case, your command will search for all blocks of type "Inport" at the top Level i.e. " 1". And if you have many Inports, then you get a cell Array with all inports at the top Level of your model. If your simulink model contains SubSystem blocks, then their Contents are considered as another Level. I mean Inports inside your sbsystem block are not searched if you set SearchDepth to 1, it shound be 2 to take Subsystem Contents into account. By Default, if you dont specify SearchDepth at all, it will search in all Levels.
Steven Lord
Steven Lord 2018년 7월 18일
When you are uncertain what a function does, my first recommendation is for you to read or skim its documentation page. These pages usually include a description of the syntax for the function, an explanation of the allowed inputs, and examples. In this particular case, the code in your question is very similar to the "Search Children of Subsystem" example on that page; see if the description in that example makes the purpose of that code any clearer.

카테고리

도움말 센터File Exchange에서 Programmatic Model Editing에 대해 자세히 알아보기

질문:

2018년 7월 18일

답변:

2018년 7월 18일

Community Treasure Hunt

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

Start Hunting!

Translated by