Hide Simulink badge icons

조회 수: 3 (최근 30일)
Wojciech Przystas
Wojciech Przystas 2024년 7월 26일
댓글: Wojciech Przystas 2024년 10월 22일
Hello,
When using Simulink Data Dictionary or colouring sample times, badge icons are displayed in the bottom left corner of the Simulink/Stateflow diagram.
I would like to hide or deactivate them.
What is the best way to do this, preferably programmatically?

답변 (1개)

Shubham
Shubham 2024년 8월 8일
편집: Shubham 2024년 8월 8일
Hi Wojciech,
The Domain Specification Badge" that you see on the bottom left corner of the Simulink Editor indicates the execution domain computed for a model when you update your Simulink model. You can toggle its visibility by turning on the “Sample Time Display” from the Information Overlays.
However, you cannot hide the badge if the “Sample Time Display” is turned on. To programmatically hide the badge, you need to turn off “Sample Time Display” which can be achieved using the following code snippet:
% Turn off sample time colours
set_param(model, 'SampleTimeColors', 'off');
% Turn off sample time annotations
set_param(model, 'SampleTimeAnnotations', 'off');
% Update the model to apply changes
set_param(model, 'SimulationCommand', 'update');
You can also toggle the visibility of the badge by enabling or disabling the "Set Domain Specification" parameter in the "Execution" tab of the "Property Inspector" or by using the following command:
set_param(subsystem, 'SetExecutionDomain', 'off');
Refer to the following documentation link for more information on Domain Specification Badge”:
Hope this helps.
  댓글 수: 1
Wojciech Przystas
Wojciech Przystas 2024년 10월 22일
Hi Shubham
Thank you for your reply.
Your answer is not helpful to me.
Because in my case, I would like to have the option to deactivate all badge icons (regardless of domain) and not display them at all.
Thanks.
Yours sincerely, Wojciech

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Interactive Model Editing에 대해 자세히 알아보기

제품


릴리스

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by