color the specific simulink block

1 回表示 (過去 30 日間)
Gopalakrishnan venkatesan
Gopalakrishnan venkatesan 2015 年 5 月 22 日
How can i change the color of the particular simulink block from the matlab command window?
I have first loaded the system load_system('testmodel')
'testmodel\input1' is my inport1 name.
now i need to change the inport1 to color green?
is it possible to do it?
thanks a lot

採用された回答

Sebastian Castro
Sebastian Castro 2015 年 5 月 22 日
You can enter
>> blockName = 'testModel/input1';
>> set_param(blockName,'BackgroundColor','green');
By the way, you could use other commands such as gcb or find_system (look them up!) to figure out block names.
- Sebastian
  1 件のコメント
Gopalakrishnan venkatesan
Gopalakrishnan venkatesan 2015 年 5 月 22 日
Thanks a lot

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by