Adding a masked subsytem to a model from script.
6 次查看(过去 30 天)
显示 更早的评论
I am writing a program that automates the building of a simulink system. However when I try the following command:
add_block('built-in/Compare To Constant',[sys,'/compare'],'relop','~=','const','realmax(single)','Position',[100 275 200 325])
I get an error stating that a block compare to constant block doesn't exist. After digging a little I discovered that compare to constant is actually a masked subsystem. So my question is is there a way to add compare to constant, or a similar masked subsystem block, to a model from script directly or do I need to re-create the subsystem and then mask it in the code?
0 个评论
采纳的回答
Fangjun Jiang
2011-8-25
This is a little tricky. Right click the Simulink library at the library browser, choose 'Open the Simulink library'. Then double click the "Logical and Bit operations", select the "Compare to Constant" block.
Go to MATLAB Command Window, type source=gcb, you will see the full path of the block. It contains carriage returns.
Assume you have a new model called "untitled" open, run the line and you will see the block added.
add_block(source,'untitled/block')
2 个评论
Guy Rouleau
2011-8-25
Good catch for the CR Fangjun.
If you want to build the string from scratch, you can use sprintf and "\n" for the carriage return... something like:
source = sprintf('Compare\nTo Constant');
Fangjun Jiang
2011-8-26
Or use source=['Compare',char(10),'To Constant'].
I thought the main issue is the 'built-in'. add_block(source,destination) always works with the full path of source. 'built-in' seems to work only for those elemental blocks, such as Gain, Sum.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Subsystems 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!