Simulink.BlockDiagram.arrangeSystem does not work inside library
조회 수: 6 (최근 30일)
이전 댓글 표시
Hello,
I'm using the command:
Simulink.BlockDiagram.arrangeSystem(gcb,FullLayout='true');
to sort and rearrange the blocks inside a masked subsystem. This worked fine until I converted this subsystem into a library block.
Now this command does nothing and the internal structure remains cluttered and unreadabel. Because this blocks heavily modifies itself, I can't establish a pleasant alignment beforehand.
Is there any way to get this working?
댓글 수: 4
Fangjun Jiang
2022년 11월 30일
Sorry, to be acurate, for the library block, I shall refer it as "is the LinkStatus inactive".
답변 (1개)
Fangjun Jiang
2022년 11월 30일
I've tried it. You need to disable the library link first.
set_param(gcb,'LinkStatus','inactive')
Simulink.BlockDiagram.arrangeSystem(gcb,FullLayout='true')
참고 항목
카테고리
Help Center 및 File Exchange에서 Simulink Functions에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!