2 q4 G4 w" O" t3 I7 e3 ~这样就可以打开slbocks.m文件模板,为了将自定义的模块库显示在Library Browser窗口下,需要对该程序进行修改。首先把slbocks.m文件拷贝到自定义库文件 ( n* O" Q5 x- L( W' j6 e0 a
同一目录下(即刚才创建的路径),然后打开该文件进行如下修改(红色为所作修改),并保存: 1 U0 ` a- J h( \" R }% y
function blkStruct = slblocks 3 B4 F( h/ k7 `. f- i# C. X
%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: % 5 i$ c8 g1 j! V* [( ^
% Name Name of the Blockset in the Simulink block library % Blocksets & Toolboxes subsystem. % p# C4 A" R) y; K
% OpenFcn MATLAB expression_r(function) to call when you % double-click on the block in the Blocksets & Toolboxes % subsystem. 3 [7 k. {+ i4 r' U3 j
% MaskDisplay Optional field that specifies the Mask Display commands % to use for the block in the Blocksets & Toolboxes % subsystem. * ~ o% i) R1 ~9 g. d3 h/ E
% Browser Array of Simulink Library Browser structures, described % below. $ M2 v& l- b3 Q) B+ P" H' I! ~9 N2 J! j0 W2 P
+ q9 r8 W% Z+ {2 H5 O+ \6 _/ q
6 M& W3 r1 d& I& [6 B( g' i$ ?* ?4 w. w) X) {+ m q( e' V
- o/ l% c9 d7 M) k# G
# @6 A( L( v2 y& L- p# N8 j3 ? , `0 G. a# P( Z/ g& F 7 W' I* z3 t2 z' w% T! U5 R/ S% 8 u( Q( b9 P4 s3 f! b* T9 o- T% 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 Y M1 \; N* z! f; e% Library File name of the library (mdl-file) to include in the % Library Browser. 1 I o. h" ~: V
% 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. % % O) K3 n5 L- X1 @% P% Example: % % % ( b4 z9 o# A w, j( [% % Define the BlocksetStruct for the Simulink block libraries % % Only simulink_extras shows up in Blocksets & Toolboxes % % 7 Q7 T9 [: ]& L9 o$ v0 a% blkStruct.Name = ['Simulink' sprintf('n') 'Extras']; % blkStruct.OpenFcn = 'simulink_extras'; ' o' y- c; l6 V' M/ M
% blkStruct.MaskDisplay = sprintf('SimulinknExtras'); % % % 8 a7 z Y- e# Z( c$ Z* n& s% % Both simulink and simulink_extras show up in the Library Browser. % % - P7 n; `2 Q2 m$ \3 ]/ U+ _
% blkStruct.Browser(1).Library = 'simulink'; % blkStruct.Browser(1).Name = 'Simulink'; % blkStruct.Browser(2).Library = 'simulink_extras'; % blkStruct.Browser(2).Name = 'Simulink Extras'; % & E% D" Q+ r* ?5 Q, y6 w% Copyright 1990-2006 The MathWorks, Inc. % $Revision: 1.20.2.10 $ % 8 c+ [6 e7 [1 Y. s
% Name of the subsystem which will show up in the Simulink Blocksets 8 i* L6 w8 F! ~, I/ y g8 F5 s0 b) M" L" b( D" Q- b! _' W9 V% m; h+ H+ k+ p
& N' b9 ~ H, {% and Toolboxes subsystem. % 5 t3 B8 s2 W( g$ N0 w4 I* X
blkStruct.Name = ['Simulink' sprintf('n') 'Extras']; % 7 d" v! _( f1 @$ i( ^( X
% The function that will be called when the user double-clicks on % this icon. % 0 |: t. g6 f, d& I! B2 V! Z& CblkStruct.OpenFcn = 'simulink_extras'; % & W7 `; l+ I$ ?4 e) 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. % 9 n4 R1 [% c j* ^' o" f9 R2 eblkStruct.MaskDisplay = ''; % ( G3 c* Y& {& Z) _/ Y% 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. % . m, k2 R/ B: Z& n* fBrowser(1).Library = 'Own_efinition'; %这个是库文件名 6 a H$ z* w, h( z
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'; " B' z5 ?3 y. Q
Browser(2).IsFlat = 0;% Is this library "flat" (i.e. no subsystems)? blkStruct.Browser = Browser; clear Browser; % 3 |- n% _: [% l) L
% Define information about Signal Viewers % * W. ^: U1 N1 h8 m+ y8 Y
Viewer(1).Library = 'simviewers'; Viewer(1).Name = 'Simulink'; blkStruct.Viewer = Viewer; clear Viewer; ' E: M3 }1 t- O- O8 E, ~ 2 Y6 E% x2 b+ d. _ 8 y# s# B+ C, n3 J4 F3 k" V
% $ L9 j$ {3 \) m% Define information about Signal Generators % ( g3 T8 ^$ k M, ^Generator(1).Library = 'simgens'; Generator(1).Name = 'Simulink'; blkStruct.Generator = Generator; clear Generator; 6 m: j0 ~- X' y
% Define information for model updater # ~% r& ~ `/ i1 t" R%blkStruct.ModelUpdaterMethods.fhDetermineBrokenLinks = @UpdateSimulinkBrokenLinksMappingHelper; 0 p! L7 k5 b/ e! o
blkStruct.ModelUpdaterMethods.fhSeparatedChecks = @UpdateSimulinkBlocksHelper; % End of slblocks ! g" E+ E! `3 J# N2 g' ` x
5、再打开Simulink Library Browser,按F5刷新,即可看到自定义的模块库,展开后可以看到内部的自定义模块。那么用户可以方便地进行拖放模块,就可以使用 自定义的封装模块了。 6 H5 M! y3 ?0 Q5 o如果还要在新建的模块库下面创建子模块库,需要把Subsystem模块加入到模块库中,打开Subsystem模块,删除所有内容(ports等元件),添加自己创建的模块 : o( t4 ]# b* ^7 q7 y
保存即可,然后重新打开Simulink Library Browser,按F5刷新,即可看到自定义的模块库和字模块库。 $ v5 u* l* L; _0 S! T- s1 P0 L! O' g8 B0 Y