How I can create a new library?
11 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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
0 Commenti
Risposte (2)
Steven Lord
il 26 Set 2016
"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 Commenti
Steven Lord
il 26 Set 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.
Fernando Beltrán
il 26 Set 2016
1 Commento
Steven Lord
il 26 Set 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.
Vedere anche
Categorie
Scopri di più su Search Path in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!