How to add link from line to a Goto block using command
13 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Varun Nayyar
el 28 de Nov. de 2022
Editada: madhan ravi
el 7 de Mzo. de 2024
I have a model named (generic_cond)
I added a goto block like below:
temp = add_block('simulink/Signal Routing/Goto','generic_cond/LOAD1_LEVEL', 'GotoTag', 'LOAD1_LEVEL')
There is a signal line (LOAD1_LEVEL) which connects two blocks in my model. How do i add line to the new Goto block using command
Something like this does not work: add_line('generic_cond',LOAD1_LEVEL, temp);
0 comentarios
Respuesta aceptada
Pravarthana P
el 1 de Dic. de 2022
Editada: madhan ravi
el 7 de Mzo. de 2024
Hi Varun Nayyar,
I understand you are trying to add a signal line between two blocks, to Goto block programmatically.
The signal line can be connected to Goto block using ‘add_line’ function by specifying the port number of the desired blocks.
In this case to connect the signal line, the port number of the block from which the signal is originating can be used along with the port number of the Goto block.
For example, let Constant and Scope be the two blocks between which the LOAD1_LEVEL signal runs which you want to connect to Goto block:
>>add_line('generic_cond','Constant/1','Goto/1');
For more information, refer to the documentation link:
I hope this information helps you.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Signal Generation, Manipulation, and Analysis en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!