Clear Filters
Clear Filters

How I can create a new library?

4 views (last 30 days)
Fernando  Beltrán
Fernando Beltrán on 26 Sep 2016
Commented: Steven Lord on 26 Sep 2016
Good morning,
I have a question and I would like to know if anyone can help.
I want to create a new library and place it in Simulink Library Browser.
I created a file .slx with the function NewLibrary called "newlibary" and have also created a function (slblocks.m).
function blkStruct = slblocks
blkStruct.Browser (1) .library = 'newlibrary';
blkStruct.Browser (2) .Name = 'FERNANDO';
I have these two files but I do not know where I have to put the folder for Simulink recognize them.
Thank you very much

Answers (2)

Steven Lord
Steven Lord on 26 Sep 2016
From step 6 on this documentation page:
"Where you save the library depends on how you plan to use it. If you want to add it to the Library Browser, save it to a folder on the MATLAB® path or add the location to the MATLAB path. Otherwise, save it to a location where the models that use the blocks can access it."
This documentation is for the most recent release. If you're using an older release, check the version of this page included in your installation's documentation in case the process has changed between the release you're using and the most recent release.
  2 Comments
Fernando  Beltrán
Fernando Beltrán on 26 Sep 2016
Thanks, but one thing more. What is Matlab path? I have read it in many place, but I do not understand very well.
Steven Lord
Steven Lord on 26 Sep 2016
When you execute a program in MATLAB, MATLAB needs to know where the functions, scripts, classes, etc. that program calls are implemented. It does so by searching the MATLAB search path. From the Getting Started documentation:
"MATLAB looks for scripts and other files in certain places. To run a script, the file must be in the current folder or in a folder on the search path."
You can display the path by typing the command path at the MATLAB prompt. You can put your library file in any directory listed in that command's output, but I strongly recommend you avoid any directory under the toolbox subdirectory of your matlabroot directory. Those directories are intended to hold files that are part of MathWorks products, not user files.

Sign in to comment.


Fernando  Beltrán
Fernando Beltrán on 26 Sep 2016
Thanks. I have created a folder with two files (New library.slx and *.m) I have added this folder to Matlab path. Then I have opened Simulink and Library Browser is empty. What can I do? Thanks
  1 Comment
Steven Lord
Steven Lord on 26 Sep 2016
I think this shouldn't have been a separate answer but a comment on my answer. Anyway, take a look at step 5 in the checklist on the documentation page to which I linked.

Sign in to comment.

Categories

Find more on Manage Products in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

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

Start Hunting!