How to change the data type of an Inport block ? Eg from 'Inherit: auto' to 'Bus: abc'
2 次查看(过去 30 天)
显示 更早的评论
I am trying to change the data type of Inport blocks from 'Inherit: auto' to 'Bus:'. I want to know if there is any command to do such a thing or how to write a script for it.
0 个评论
采纳的回答
Birdman
2018-2-19
There are two lines of code for it in command line. First you need to define a bus, and then you need to create its element(since it has 0 elements by default).
InBus=Simulink.Bus;
InBus.Elements=Simulink.BusElement;
These code creates a bus and its element. Then, choose Bus for inport and write InBus.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Sources 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!