1

I have a Simulink model and I would like to extract the location of the Stateflow blocks it contains. I am looking for a command inspired by this command that gives the total number of blocks. How could I do this or where can I find more information?

Karlo
  • 1,420
  • 25
  • 44

1 Answers1

2

First find all Stateflow blocks:

Stateflow_blocks = find_system('your simulink model','MaskType','Stateflow')

Afterwards, get the positions:

for block = Stateflow_blocks
  get_param(block,'Position')
end