* E9 j, c* r5 E这样就可以打开slbocks.m文件模板,为了将自定义的模块库显示在Library Browser窗口下,需要对该程序进行修改。首先把slbocks.m文件拷贝到自定义库文件 : o! V: a" M4 C同一目录下(即刚才创建的路径),然后打开该文件进行如下修改(红色为所作修改),并保存: 7 U3 [" S* s9 \+ p4 `
function blkStruct = slblocks 2 d6 G$ k" c( |! F$ g1 ^ ~
%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: % : a) n8 N& i6 o5 m4 J$ U9 c" g% Name Name of the Blockset in the Simulink block library % Blocksets & Toolboxes subsystem. ?, P8 @2 \8 z+ F% OpenFcn MATLAB expression_r(function) to call when you % double-click on the block in the Blocksets & Toolboxes % subsystem. " f: }. L9 f3 ?% MaskDisplay Optional field that specifies the Mask Display commands % to use for the block in the Blocksets & Toolboxes % subsystem. 3 s* X4 X8 d1 S" R1 |! o
% Browser Array of Simulink Library Browser structures, described % below. " m% X+ f- H3 y
3 e0 P, Q' E5 I& k- I* I # n2 W. s% n. o% W9 ~6 I {, M M( Q# H; z! `* f' z
5 C9 b+ @. B% H
) P4 h) f5 a- g+ P8 O+ Z* y
$ }8 n3 H9 w4 R) d$ W2 ~
2 t& Q3 N2 Z; Z. C1 a% V5 ?" f3 W& s
% + Y: h, h7 b+ f/ u/ t4 Z% 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: % . `/ b* j9 b7 ~; R9 ~. Q) F% Library File name of the library (mdl-file) to include in the % Library Browser. 4 [; C) n! N5 U- o- B
% 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. % ; |9 a5 F( Z* ?! l% Example: % % % 8 i2 I' E4 i, o H' {% W( w1 f" E+ [% % Define the BlocksetStruct for the Simulink block libraries % % Only simulink_extras shows up in Blocksets & Toolboxes % % 4 {4 {# | A1 a5 G# A! f; e- |% blkStruct.Name = ['Simulink' sprintf('n') 'Extras']; % blkStruct.OpenFcn = 'simulink_extras'; # a2 z/ A* V6 ?! `/ G% blkStruct.MaskDisplay = sprintf('SimulinknExtras'); % % % v5 l% U* G) I& l, h
% % Both simulink and simulink_extras show up in the Library Browser. % % 1 t1 N: ^1 S& ]7 J' T6 v- w+ D% blkStruct.Browser(1).Library = 'simulink'; % blkStruct.Browser(1).Name = 'Simulink'; % blkStruct.Browser(2).Library = 'simulink_extras'; % blkStruct.Browser(2).Name = 'Simulink Extras'; % # J, S+ Y* Z( U8 y. \) B( `% Copyright 1990-2006 The MathWorks, Inc. % $Revision: 1.20.2.10 $ % 2 U7 N3 g: a$ Y. M7 [
% Name of the subsystem which will show up in the Simulink Blocksets / n7 [ j* D$ n+ N" ~" v9 i& y) o$ U1 U% g0 z$ x! g6 C% w
% m0 `* ^) s6 z- G5 {' u- ^) @6 r1 J
7 ^0 W8 r8 z4 f9 P" s3 H% and Toolboxes subsystem. % $ E: N4 J2 h3 O7 c" I2 OblkStruct.Name = ['Simulink' sprintf('n') 'Extras']; % 9 m) n# R9 I' u9 K
% The function that will be called when the user double-clicks on % this icon. % $ ?4 R% n1 i+ G* @) O; [0 v6 {* h# QblkStruct.OpenFcn = 'simulink_extras'; % # c; g7 E3 i. {
% 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. % 0 t3 u" N# e7 p f
blkStruct.MaskDisplay = ''; % * A0 j& X! b& }: t6 R1 ^% 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. % $ X8 ]4 J" z9 z0 s- ]Browser(1).Library = 'Own_efinition'; %这个是库文件名 " h- R1 I0 o6 V1 \1 g' dBrowser(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'; . j5 x8 X" d- B. ^$ ` ~9 g6 V
Browser(2).IsFlat = 0;% Is this library "flat" (i.e. no subsystems)? blkStruct.Browser = Browser; clear Browser; % & e9 u, F; ^# ^
% Define information about Signal Viewers % : x6 u* ]+ i/ {Viewer(1).Library = 'simviewers'; Viewer(1).Name = 'Simulink'; blkStruct.Viewer = Viewer; clear Viewer; ) |& K* ?$ Q9 j( ` 5 ^# k/ {) D( Q7 m 2 \9 W, a [* o( m% ) M( G H O" s7 B4 X$ [3 B5 r
% Define information about Signal Generators % ( s8 ~1 S. [, w; g$ E0 v4 U
Generator(1).Library = 'simgens'; Generator(1).Name = 'Simulink'; blkStruct.Generator = Generator; clear Generator; 7 z- g' F$ f- W+ Y; F1 m' `: x% Define information for model updater & D. w+ k8 R( |
%blkStruct.ModelUpdaterMethods.fhDetermineBrokenLinks = @UpdateSimulinkBrokenLinksMappingHelper; Q: e; g$ z V. D4 `
blkStruct.ModelUpdaterMethods.fhSeparatedChecks = @UpdateSimulinkBlocksHelper; % End of slblocks $ b: c5 c9 Z' Z' ] X: y5、再打开Simulink Library Browser,按F5刷新,即可看到自定义的模块库,展开后可以看到内部的自定义模块。那么用户可以方便地进行拖放模块,就可以使用 自定义的封装模块了。 ( l; E9 q8 @( w" V
如果还要在新建的模块库下面创建子模块库,需要把Subsystem模块加入到模块库中,打开Subsystem模块,删除所有内容(ports等元件),添加自己创建的模块 9 i. F. e2 U: H; l2 n保存即可,然后重新打开Simulink Library Browser,按F5刷新,即可看到自定义的模块库和字模块库。 5 a- I5 ~4 R# f" I/ k7 c3 }2 t( B5 x6 f! p6 j6 y