How to list all the blocks in a model programmatically?

Is there a command to get all the blocks and their paths of a model in a list?

 Réponse acceptée

MathWorks Support Team
MathWorks Support Team le 2 Sep 2021
Modifié(e) : MathWorks Support Team le 27 Sep 2021
To get a list of all the blocks in a model programmatically, please execute the following commands in the command prompt:
>> load_system('model_name')
>> bl = getfullname(Simulink.findBlocks('model_name'))
For more information on using this function please refer to the following documentation:
The above "Simulink.findBlocks" command also finds the following types of blocks:
  • Blocks under masks.
  • Blocks that are commented out.
  • Variants of blocks.
But this does not find blocks that are present inside a library linked block. To find such type of blocks you have to create a "findOptions" object and set the "FollowLinks" option to "true".
To find more information about this please refer to the following documentation:
 

Plus de réponses (0)

Catégories

Produits

Version

R2018a

Tags

Aucun tag saisi pour le moment.

Community Treasure Hunt

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

Start Hunting!

Translated by