Borrar filtros
Borrar filtros

Multiple custom libraries in one library browser

5 visualizaciones (últimos 30 días)
Byunghoon Yoo
Byunghoon Yoo el 19 de Jun. de 2024
Respondida: Ayush Aniket el 19 de Jun. de 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;

Respuestas (1)

Ayush Aniket
Ayush Aniket el 19 de Jun. de 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:

Categorías

Más información sobre Block Libraries en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by