How to know which block connected with outport block in a subsystem?

9 ビュー (過去 30 日間)
galaxy
galaxy 2021 年 7 月 13 日
編集済み: Devanuj Deka 2021 年 7 月 13 日
Hi all,
I have outport block in a subsystem.
In outside subsystem, there is block connect with this outport block.
I want to get property of that outside block by command line.
Do any know?
Thank you so much

採用された回答

Devanuj Deka
Devanuj Deka 2021 年 7 月 13 日
編集済み: Devanuj Deka 2021 年 7 月 13 日
Hello,
You can have a look at a similar question that has been answered by MathWorks Support Team here: Link
For your specific query, follow these steps:
First get the line handles of your chosen subsystem. (refer get_param, Common Block Properties)
blk_lines = get_param('model/subsystem','LineHandles');
Then use the 'DstBlockHandle' property of the outport lines to get the destination block handles. For the full path of these blocks, use 'getfullname' on the handles. (refer getfullname)
plant_handle = getfullname(get_param(blk_lines.Outport,'DstBlockHandle'));
Here, if your chosen subsystem has multiple outports connecting to multiple blocks, 'plant_handle' is a cell array with the elements being character vectors containing the paths of all the destination blocks. If there is only one outport connecting to a single block, 'plant_handle' is a character vector containing the path of that destination block.
Now that you have the path(s) of the destination block(s), you can get any object parameter of any of the destination blocks using the required property in the 'get_param' function.
For example, for obtaining all 'ObjectParameters' of the first destination block path in the plant_handle cell array:
get_param(plant_handle{1},'ObjectParameters'); % If multiple outports connected to multiple blocks
% get_param(plant_handle,'ObjectParameters'); % If chosen subsystem has only one outport

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeProgrammatic Model Editing についてさらに検索

タグ

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by