4 _* E: k6 G6 ^9 [. m: @, d7 _2 T这样就可以打开slbocks.m文件模板,为了将自定义的模块库显示在Library Browser窗口下,需要对该程序进行修改。首先把slbocks.m文件拷贝到自定义库文件 , u. f5 ]6 A* {/ P# Z; z同一目录下(即刚才创建的路径),然后打开该文件进行如下修改(红色为所作修改),并保存: / V* Y* i5 a: j6 p* Q9 q
function blkStruct = slblocks : W$ q, F9 Z. ^6 {* o+ w6 `2 ~
%SLBLOCKS Defines the block library for a specific Toolbox or Blockset. % SLBLOCKS returns information about a Blockset to Simulink. The % information returned is in the form of a BlocksetStruct with the % following fields: % / h8 g* @. D" J/ Y' Z7 h8 w% Name Name of the Blockset in the Simulink block library % Blocksets & Toolboxes subsystem. $ Z" t% X9 Y5 | @5 s% OpenFcn MATLAB expression_r(function) to call when you % double-click on the block in the Blocksets & Toolboxes % subsystem. 1 G8 o: I: c5 o2 y% MaskDisplay Optional field that specifies the Mask Display commands % to use for the block in the Blocksets & Toolboxes % subsystem. - n9 S0 L( x0 Y6 I$ g% Browser Array of Simulink Library Browser structures, described % below. ! b' L# { S" s1 v$ B5 {" w% n1 x8 M5 Y, p0 v! T6 i% z
$ H+ ~: S0 L$ C+ s- I+ e! M
& z4 ]1 n Q7 ~4 U% [$ @
D) L6 b" ^0 O' m' v3 O* w- I7 |) j& m2 S
: I' B/ N4 s2 P c' y* ?' a+ s' M$ m5 u. _% @8 k) q
0 R. W: Z3 R$ Q% + F* e* o6 l' b$ p: a
% 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: % 2 @# v5 j+ ]$ |& Q1 {% Library File name of the library (mdl-file) to include in the % Library Browser. ! a: ]/ [4 W- c
% 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. % 7 c# \" r$ I$ k7 s% Example: % % % ; g/ R3 [2 I- }7 A1 i( S) X
% % Define the BlocksetStruct for the Simulink block libraries % % Only simulink_extras shows up in Blocksets & Toolboxes % % / _. N" ?" o6 b
% blkStruct.Name = ['Simulink' sprintf('n') 'Extras']; % blkStruct.OpenFcn = 'simulink_extras'; ! J8 {! e! h# ^. s. J% blkStruct.MaskDisplay = sprintf('SimulinknExtras'); % % % ' q) v. [! U# V# ^% % Both simulink and simulink_extras show up in the Library Browser. % % 3 }' P9 k$ ?9 i$ H( Z% g% blkStruct.Browser(1).Library = 'simulink'; % blkStruct.Browser(1).Name = 'Simulink'; % blkStruct.Browser(2).Library = 'simulink_extras'; % blkStruct.Browser(2).Name = 'Simulink Extras'; % 5 E# ]9 ~$ V0 H# {' v4 e4 N o
% Copyright 1990-2006 The MathWorks, Inc. % $Revision: 1.20.2.10 $ % 5 s; V% p& j/ n# X9 @- s
% Name of the subsystem which will show up in the Simulink Blocksets ) P6 j- X, O" [9 @/ q
9 d7 c( p' B$ y6 s# q- U; G2 q# B
/ h6 p' g- h2 `; I
* j$ a7 O$ d J" S* ]% W# Q/ e% and Toolboxes subsystem. % ' T9 c0 q0 X, |% g* E7 `# r2 O+ \: HblkStruct.Name = ['Simulink' sprintf('n') 'Extras']; % 6 \$ Q8 T1 e( E' I* E0 T5 o! w0 j% The function that will be called when the user double-clicks on % this icon. % 9 _1 r( j: `. W: l+ ublkStruct.OpenFcn = 'simulink_extras'; % ; F2 I* p4 Z3 I' H# G% 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. % ; G" i& L* w0 l, z, J' f! G6 p4 ^1 P3 ?blkStruct.MaskDisplay = ''; % + }2 w4 F' d% V9 y* H1 ?
% 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. % 0 t' u! E0 B! T0 c4 W. [2 V" P
Browser(1).Library = 'Own_efinition'; %这个是库文件名 " s o4 d3 A m% k2 I* l
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'; + D! ]/ F6 B2 Q- K; I! {7 r
Browser(2).IsFlat = 0;% Is this library "flat" (i.e. no subsystems)? blkStruct.Browser = Browser; clear Browser; % ; A/ u: n6 F$ X: D$ F+ }7 U9 q5 L% Define information about Signal Viewers % ; r: [8 l* O8 H+ ?4 A3 V
Viewer(1).Library = 'simviewers'; Viewer(1).Name = 'Simulink'; blkStruct.Viewer = Viewer; clear Viewer; U/ O1 f2 }; G' {3 A. R5 T. r9 S6 k
2 Q% j+ h" _7 M; w
% ^3 S) G6 ~/ ]8 D3 W+ o
% Define information about Signal Generators % , T+ x3 I, m2 L7 A- v2 z
Generator(1).Library = 'simgens'; Generator(1).Name = 'Simulink'; blkStruct.Generator = Generator; clear Generator; 3 [0 k, r9 y7 e% Define information for model updater & a Z: w; d d7 [# O! \; p# |%blkStruct.ModelUpdaterMethods.fhDetermineBrokenLinks = @UpdateSimulinkBrokenLinksMappingHelper; & U0 q. i% m9 m( }) TblkStruct.ModelUpdaterMethods.fhSeparatedChecks = @UpdateSimulinkBlocksHelper; % End of slblocks H& J" w0 g" U
5、再打开Simulink Library Browser,按F5刷新,即可看到自定义的模块库,展开后可以看到内部的自定义模块。那么用户可以方便地进行拖放模块,就可以使用 自定义的封装模块了。 % Y% B2 ?7 X7 c/ \3 g
如果还要在新建的模块库下面创建子模块库,需要把Subsystem模块加入到模块库中,打开Subsystem模块,删除所有内容(ports等元件),添加自己创建的模块 , g+ A) v5 \7 s1 p- B% a* V保存即可,然后重新打开Simulink Library Browser,按F5刷新,即可看到自定义的模块库和字模块库。 $ o4 c V* X) j( B9 \ $ ]/ m3 @# S% w4 L* ` ~9 g 5 ~. g' j, r# e8 ?8 [6 g+ k