simulink 导入自定义model到library

来源:互联网 发布:uefi gpt ubuntu 安装 编辑:程序博客网 时间:2024/06/02 13:48
  1. Create a folder in the MATLAB path for the top-levellibrary and its sublibraries.

    You must store each top-level library that you want to appearin the Library Browser in its own folder on the MATLAB path.Two top-level libraries cannot exist in the same folder.

  2. Create or copy the top-level library and its sublibrariesinto the folder you created in the MATLAB path.

  3. In the folder for the top-level library, include a slblocks.m file.

    The approach you use to create the slblocks.m filedepends on your requirements for describing the library:

    • If a minimal slblocks.m file meetsyour needs, then create a new slblocks.m file,based on the example below

    • If you want to describe the library more fully, considercopying an existing slblocks.m file to use as a template, editingthe copy to describe your library (see below).



Creating function blkStruct = slblocks  % Specify that the product should appear in the library browser  % and be cached in its repository  Browser.Library = 'mylib';  Browser.Name    = 'My Library';  blkStruct.Browser = Browser;

原创粉丝点击