How to Find out the port/signal name which is connected to a particular input in a block

조회 수: 13 (최근 30일)
Consider the below image, I would like to find out the port/Signal name connected to the input xIdx using commands.
Below image is the one level up subsystem of the above image, I would like to know the command that finds out the name 'Temp_inp'.

채택된 답변

Paul
Paul 2021년 7월 11일
Can be done in two steps:
signals = get_param(block,'InputSignalNames');
signals{double(string(get_param(block,'Port')))}
where "block" is the handle of the Inport inside the subsystem.

추가 답변 (0개)

카테고리

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

제품


릴리스

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by