Increment goto name in Simulink

4 次查看(过去 30 天)
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

回答(1 个)

Dhanashree Mohite
Dhanashree Mohite 2019-2-26
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.

类别

Help CenterFile Exchange 中查找有关 Interactive Model Editing 的更多信息

标签

产品


版本

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by