How to find number of different types of blocks?
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Bibigul Shektybayeva
le 20 Juin 2017
Commenté : Bibigul Shektybayeva
le 20 Juin 2017
How to find number of different types of blocks in a system? For example, if I have two terminators, three inputs, and one 'And', and one 'Or', I want to get 4 as an answer. My idea, would be to find all blocks and then go through them in a loop, is there an easier way?
0 commentaires
Réponse acceptée
Fangjun Jiang
le 20 Juin 2017
Try this. Note that in your case, "And" and "Or" block are actually the same block type. It is called logical operator block.
f14;
a=find_system('f14','FindAll','on','type','block');
length(unique(get(a,'BlockType')))
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Event Functions dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!