MATLAB: How to find all Graphical function inside a chart

stateflow

How to find all Graphical function inside a chart

Best Answer

Use the Stateflow API as described here.
h = sfroot;
gf = h.find('-isa','Stateflow.Function')
Related Question