필터 지우기
필터 지우기

Multiple custom libraries in one library browser

조회 수: 5 (최근 30일)
Byunghoon Yoo
Byunghoon Yoo 2024년 6월 19일
답변: Ayush Aniket 2024년 6월 19일
Hello,
I am trying to add multiple custom libraries into just one simulink library browser at top level.
Please let me know how to do that. Below is my script and it doesn't work.
function blkStruct=slblocks
Browser.Library = {'Custom_lib_1'; 'Custom_lib_2'};
Browser.Name = "My Library";
blkStruct.Browser = Browser;
Actually, I succeeded to add 2 custom libraries in 2 library brower for each, through the below script.
But, I want to put 2 custom libraries in 1 simulink browser.
function blkStruct=slblocks
Browser(1).Library = 'Custom_lib_1';
Browser(1).Name = "My Library_1";
Browser(2).Library = 'Custom_lib_2';
Browser(2).Name = "My Library_2";
blkStruct.Browser = Browser;

답변 (1개)

Ayush Aniket
Ayush Aniket 2024년 6월 19일
Hi Byunghoon,
To integrate multiple custom libraries into a single Simulink Library Browser window at the top level, you need to create a master wrapper library that contains links to all the custom libraries as Sublibraries. Refer to the following documentation link to read about the process of creating a sublibrary:

카테고리

Help CenterFile Exchange에서 Block Libraries에 대해 자세히 알아보기

제품


릴리스

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by