Increment goto name in Simulink

4 Ansichten (letzte 30 Tage)
Steven Dumoulin
Steven Dumoulin am 20 Feb. 2019
I am working in a simulink model where I need to make a lot of Goto and From blocks.
The goto blocks can have the same name, but the last number need to be incremented.
Is there any fast way to make this blocks, without needing to change the name every time?
Also when a signal comes out of a Bus selector, Can a goto label have the name of the signal, coming out of the Bus Selector.
gotoIncrement.png
gotoBusSelector.png

Antworten (1)

Dhanashree Mohite
Dhanashree Mohite am 26 Feb. 2019
You can do it programmatically through add_block and set_param, as per my understanding. Please refer the following example.
sys = 'Sample'; % model is Sample.slx
open_system(sys) % Open the model
for i=1:5
h = add_block('simulink/Signal Routing/From',[sys '/From'],'MakeNameUnique','on');
set_param(h,'Gototag',strcat('goto',num2str(i)));
end
Similarly you can create multiple GoTo blocks as well. The 'Position' parameter can be used for mentioning the position in model for each block in model window.
Yes, a goto label can have the name of the signal, coming out of the Bus Selector.

Kategorien

Mehr zu Interactive Model Editing finden Sie in Help Center und File Exchange

Produkte


Version

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by