$ Y' J: Y2 e0 w% d& t% M. v( d4 m" c$ V5 c9 j: m) j, |$ G
% ' O& S1 {/ p5 y! K
% The Simulink Library Browser needs to know which libraries in your % Blockset it should show, and what names to give them. To provide % this information, define an array of Browser data structures with one % array element for each library to display in the Simulink Library % Browser. Each array element has two fields: % : G# g' d" X+ r" I
% Library File name of the library (mdl-file) to include in the % Library Browser. % |1 |8 m: Y Z% |( J4 R8 z% Name Name displayed for the library in the Library Browser % window. Note that the Name is not required to be the % same as the mdl-file name. % . F7 k1 M' @* T+ t% Example: % % % * m J- j t( B$ n: ^% u9 Z' H% % Define the BlocksetStruct for the Simulink block libraries % % Only simulink_extras shows up in Blocksets & Toolboxes % % * ^9 V9 Z7 Y& U: b- N' N9 z% blkStruct.Name = ['Simulink' sprintf('n') 'Extras']; % blkStruct.OpenFcn = 'simulink_extras'; ! V/ g0 n# T, g4 \8 {
% blkStruct.MaskDisplay = sprintf('SimulinknExtras'); % % % * M0 ~1 I; ~" w7 | S, @
% % Both simulink and simulink_extras show up in the Library Browser. % % 0 S* e$ Y* C6 p/ z+ u' M' L
% blkStruct.Browser(1).Library = 'simulink'; % blkStruct.Browser(1).Name = 'Simulink'; % blkStruct.Browser(2).Library = 'simulink_extras'; % blkStruct.Browser(2).Name = 'Simulink Extras'; % . j7 U1 k/ S3 C5 H
% Copyright 1990-2006 The MathWorks, Inc. % $Revision: 1.20.2.10 $ % ! C3 T. r4 F x- D% Name of the subsystem which will show up in the Simulink Blocksets . Z0 ^" r' V$ a9 Y
2 D$ L" c3 F; K$ x1 x: j0 C: }, p& h- z# U$ u# J
9 l' H! B; q- Q
% and Toolboxes subsystem. % : {% l$ e4 }$ UblkStruct.Name = ['Simulink' sprintf('n') 'Extras']; % 5 l5 V; D7 J( @' J# D% The function that will be called when the user double-clicks on % this icon. % & T1 }1 R8 ~/ d, Z& t4 Y! iblkStruct.OpenFcn = 'simulink_extras'; % : z% l" Y/ F+ \8 a6 K& [2 q. D( }
% The argument to be set as the Mask Display for the subsystem. You % may comment this line out if no specific mask is desired. % Example: blkStruct.MaskDisplay = 'plot([0:2*pi],sin([0:2*pi]));'; % No display for Simulink Extras. % 3 ^. |; n! u1 K2 A8 S JblkStruct.MaskDisplay = ''; % % U- P& d& w* ]9 _: F% Define the Browser structure array, the first element contains the % information for the Simulink block library and the second for the % Simulink Extras block library. % l1 G O b4 s# F
Browser(1).Library = 'Own_efinition'; %这个是库文件名 8 C' Z2 l: ], C/ L. c1 |4 O
Browser(1).Name = 'MyLibrary'; %这个是需要在库浏览器中显示的名称 Browser(1).IsFlat = 0;% Is this library "flat" (i.e. no subsystems)? Browser(2).Library = 'simulink_extras'; Browser(2).Name = 'Simulink Extras'; ) R" `" H J8 }0 m4 S0 HBrowser(2).IsFlat = 0;% Is this library "flat" (i.e. no subsystems)? blkStruct.Browser = Browser; clear Browser; % ( P+ E5 K/ }; H5 G% Define information about Signal Viewers % 6 ?8 n% Y' T7 m5 X3 b1 C
Viewer(1).Library = 'simviewers'; Viewer(1).Name = 'Simulink'; blkStruct.Viewer = Viewer; clear Viewer; " b! Q; L! q1 u+ |" ]5 C4 H
# _. V! M( ~7 g2 P) P
* B" w7 l! c/ m0 U3 a9 K* t% & ]9 W" e3 z$ c% Define information about Signal Generators % 2 I! D. S6 t: AGenerator(1).Library = 'simgens'; Generator(1).Name = 'Simulink'; blkStruct.Generator = Generator; clear Generator; + M) b- A% _6 r- m. t: V
% Define information for model updater 8 H+ y4 u4 R# m
%blkStruct.ModelUpdaterMethods.fhDetermineBrokenLinks = @UpdateSimulinkBrokenLinksMappingHelper; * `3 i- l) q' Z- {/ F, w8 \blkStruct.ModelUpdaterMethods.fhSeparatedChecks = @UpdateSimulinkBlocksHelper; % End of slblocks : {" q% j, w/ W% W
5、再打开Simulink Library Browser,按F5刷新,即可看到自定义的模块库,展开后可以看到内部的自定义模块。那么用户可以方便地进行拖放模块,就可以使用 自定义的封装模块了。 5 L, @5 Q' O: N o) Y如果还要在新建的模块库下面创建子模块库,需要把Subsystem模块加入到模块库中,打开Subsystem模块,删除所有内容(ports等元件),添加自己创建的模块 8 k# G1 b. Z; c' Q/ A
保存即可,然后重新打开Simulink Library Browser,按F5刷新,即可看到自定义的模块库和字模块库。6 D# q* j) n9 K# W8 G# S0 w% ~
. O8 c( C" \# ]! s5 T