Filter löschen
Filter löschen

Multiple custom libraries in one library browser

5 Ansichten (letzte 30 Tage)
Byunghoon Yoo
Byunghoon Yoo am 19 Jun. 2024
Beantwortet: Ayush Aniket am 19 Jun. 2024
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;

Antworten (1)

Ayush Aniket
Ayush Aniket am 19 Jun. 2024
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:

Kategorien

Mehr zu Block Libraries finden Sie in Help Center und File Exchange

Produkte


Version

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by