simulink 라이브러리에 사용자 정의 모델 가져오기

  • 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.
  • Create or copy the top-level library and its sublibrariesinto the folder you created in the MATLAB path.
  • 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;

    좋은 웹페이지 즐겨찾기