Defining Structures in Stateflow

4 views (last 30 days)
Dhruv
Dhruv on 8 Oct 2013
I am trying to define structures to be used in Stateflow. The problem being I have a kind of nested structure.. where one of the element of the structure is a structure of the same type.. this is possible to do in C.
eg:
typedef struct btnode { int count ; int value[4] ; struct btnode *child[4] ; } ;
However, in Stateflow I need to provide the structures as simulink bus objects first which does not allow for such a bus input. The nested structure being a pointer is also a problem. My code is similar to this example code online:

Answers (0)

Categories

Find more on Complex Logic in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!