Info

This question is closed. Reopen it to edit or answer.

How to find each model uses given block?

1 view (last 30 days)
Michal Naszko
Michal Naszko on 14 Oct 2020
Closed: MATLAB Answer Bot on 20 Aug 2021
I need to find each .slx model which uses block matrix multiply.
For example in given directory I have the following models:
  • modelA
  • modelB
  • modelC
modelA and modelC contain matrix multiply block and modelB does not contain this block. So expected result of find command is modelA and modelC. Is there any command that let me perform that action?

Answers (1)

Fangjun Jiang
Fangjun Jiang on 14 Oct 2020
You will need to go through a loop, open or load each model, find if particular block exists and then close the model.
open_system()
find_system()

Products

Community Treasure Hunt

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

Start Hunting!