How to add a Stateflow chart in an existing Simulink model using API?
조회 수: 5 (최근 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!