Clear Filters
Clear Filters

How can I open Stateflow Charts in new window using configuration?

1 view (last 30 days)
I have been using Simulink/Stateflow (MATLAB 2016b/ 2014b).
I would like to know configuration to open the Stateflow Charts in new windows.
(Not simulink window)
Of course I know how to use the right button of mouse and how to use the shitf key.
But I want to know how to set it up through configuration or programatically.
Please let me know!!!

Answers (1)

Navdeep Singh
Navdeep Singh on 2 Aug 2017
This can be done using open_system command. Refer documentation here.
If you have a .slx model named 'myModel' with stateflow chart named 'Chart'. Running following commands in matlab will open up the chart in a new window:
>> load_system('myModel')
>> open_system('myModel/Chart','window')
  1 Comment
Aditya Kaki
Aditya Kaki on 25 Jul 2018
I am using MATLAB 2016b
Using open_system(path) function the stateflow can be opened but say if the path is specifying a state in a stateflow it fails to open the model.

Sign in to comment.

Categories

Find more on 복잡한 논리 in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!