How to detect Enable/Trigger/Function call subsystem ?

6 ビュー (過去 30 日間)
Videet
Videet 2013 年 9 月 30 日
コメント済み: Videet 2013 年 9 月 30 日
I am making small testing tool. In my work I need to detect Enable Port, Trigger Port and function call subsystems.
I tried the sentences like:
en_ports = find_system(system_name, 'BlockType', 'Enable Port');
trig_ports = find_system(system_name, 'BlockType', 'Trigger Port');
But this does not works..
My question is How to detect this kind of ports/subsystems using m script?
  1 件のコメント
Jan
Jan 2013 年 9 月 30 日
Whenever I read "does not work" in the forum, I need a more detailed explanation of what happens. Do you get an error message or do the results differ from your expectations?

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

採用された回答

Kaustubha Govind
Kaustubha Govind 2013 年 9 月 30 日
It should be:
en_ports = find_system(system_name, 'BlockType', 'EnablePort');
trig_ports = find_system(system_name, 'BlockType', 'TriggerPort');
  1 件のコメント
Videet
Videet 2013 年 9 月 30 日
Ya its working.. thank you.. Only one space was making it tough for me.. :O
What about function block? Do you have any idea for that ?

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

その他の回答 (0 件)

カテゴリ

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

製品

Community Treasure Hunt

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

Start Hunting!

Translated by