Hot to get Signal path and block port number from Simulink model

1 visualización (últimos 30 días)
TeraWatt
TeraWatt el 24 de Ag. de 2023
Respondida: Fangjun Jiang el 25 de Ag. de 2023
How can I get a signal path and Block port number from a Simulink model porgrammatically using only a SIGNAL NAME?.
is it posible to search for a signal name within my Simulink model and get the path/route of the block where it is connected including the block port number?
this is a block within my model:
I want to get : PATH = sldemo_suspn_3dof/Body Dynamics
and PORT NUMBER =1
using SINAL NAME : " Body_out1"

Respuestas (1)

Fangjun Jiang
Fangjun Jiang el 25 de Ag. de 2023
open_system('f14');
lines=find_system('f14','FindALl','On','type','line','name','w');
get(lines(1),'SourcePort')

Categorías

Más información sobre Modeling en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by