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?
1 Answer
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
2 Comments
Karlo
The first statement already gives me the path of the respective Stateflow blocks. What is the purpose of the second command (for loop) exactly?
Tomáš Kratochvíla
I have assumed that you wanted physical location of the blocks on the screen :-)