How to add a Stateflow chart in an existing Simulink model using API?
3 次查看(过去 30 天)
显示 更早的评论
Consider an existing Simulink model with several subsystems connected with each other through ports and connectors. I want to know how to add Stateflow Chart within the subsystems using the API.
With the commands 'sfnew' and 'stateflow' I can only generate a new Simulink model with Stateflow Chart instead of adding a chart into an already existing model.
0 个评论
采纳的回答
Jason Ghidella
2012-11-16
编辑:Jason Ghidella
2012-11-16
You can use the add_block function to add a Stateflow chart to an existing subsystem.
So for example, to add a Stateflow chart to a subsystem called "Subsystem" in a model called "my_model", and name that chart, "MyChart", you would use the following command:
add_block('sflib/Chart','my_model/Subsystem/MyChart')
2 个评论
Sriragavi R
2017-6-16
The library 'sflib/Chart' is not working in Matlab 2012a.Are there any alternatives to add stateflow to an existing simulink model?
Tonghui Zhang
2019-9-24
Hi,
I am confronted with a similar question. How can I add like state in a chart in my model?
Thanks in advance.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Simulink Functions 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!