Prev: Best way to share data between GUIDE m-file & Level-2 C-MEX s-function?
Next: A Simulink question about upconversion in a Com system
From: timo on 16 Feb 2010 13:49 I have a system with multiple subsystems...(.MDL files) what can I do to create a list of names of all its subsystems??
From: Jason Retik on 17 Feb 2010 12:56
Please try the following: >>find_system(modelName, 'BlockType', 'SubSystem') This will give you a cell array of all subsystems in a model. If you are looking for all the models in a model reference hierarchy, try the following: >>find_mdlrefs(modelName); Jason Retik "timo " <animempeg(a)yahoo.com> wrote in message news:hlepb4$3gi$1(a)fred.mathworks.com... >I have a system with multiple subsystems...(.MDL files) what can I do to >create a list of names of all its subsystems?? |