color the specific simulink block
조회 수: 4 (최근 30일)
이전 댓글 표시
Gopalakrishnan venkatesan
2015년 5월 22일
댓글: 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
댓글 수: 0
채택된 답변
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
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Programmatic Model Editing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!