フィルターのクリア

Looking for a function to get Number and Names of Input/Output from a model

2 ビュー (過去 30 日間)
Hello,
I'm would get with a matlab function all the input and the output names of a specified model. I'm pretty sure I've seen a function like that but I didn't find it. I know I can do my job with MDLInfo but it is not very optimized for my application.
Hope someone could have my answer.
Thanks !

採用された回答

Fangjun Jiang
Fangjun Jiang 2022 年 5 月 24 日
If the Inport/Outport block names are good enough,
blks=find_system('ModelName','FindAll','On','SearchDepth',1,'BlockType','Inport')
get(blks,'Name')
length(blks)
More elaborated codes are needed if you want the signal line names (but some of them could be empty)
  1 件のコメント
Adrien GOEPPEL
Adrien GOEPPEL 2022 年 5 月 24 日
For my application, the Inport/Output name are good enough. It fits perfectly with my application. Thanks a lot !

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

製品


リリース

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by