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

53 views (last 30 days)
working of function?

Answers (2)

Akbar
Akbar on 18 Jul 2018
Edited: Akbar on 18 Jul 2018
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 on 18 Jul 2018
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.

Community Treasure Hunt

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

Start Hunting!