安装了matlab2014b后,突然发现Simulink Library Browser窗口中没有内容,找了一种方法添加进去,希望对有需要的朋友有所帮助!/ }. l2 V; Y" J* n& ?; r7 u
1、创建库文件:打开Simulink Library Browser窗口。要建立Simulink库文件,首先启动Simulink工作窗口,单击菜单栏【File】下的【New】选项,选择【library】选项, 打开一个新的Library窗口界面,此时,用户可以将自己需要添加的一些模块加入到新的窗口中。然后保存为Own_efinition.mdl(所需要定义的库文件名称)。这样,就建立了一个 自定义的库文件。 ' @- P3 n% @; ^( \2、在Matlab路径下创建存放库文件的路径,也即自定义的模块库在Library Browser下的显示位置。注意在Matlab中,每一个模块库文件所在的路径必须不同。 1 Y" z4 Z/ _1 [
创建的Maltab路径是:Drogram FilesMATLABR2011btoolboxSimulinkSimulinkMyLibrary(根据自己的Matlab安装路径来确定),其中MyLibrary为自定义的文件夹。 2 F5 ~+ G/ Y G* {) M8 m& z
3、将第一步中建立的库文件拷贝到新建的Matlab路径下。在Matlab主窗口的【File】菜单栏下选择【Set Path】选项,然后单击【Add Folder】按钮,将新建的 路径添加进来,然后保存(Save),退出(Close)。 : w0 v/ n& Q, _4 r6 _& D4 H
4、要显示自定义的模块库,还需要拷贝slblocks.m函数到新建的路径下。在Matlab的命令窗口中输入: 6 V0 d3 q6 I) E. Y; o3 c
>> which('slblocks.m', '-all') 0 S6 w- p; N9 M" V9 a>> open('Drogram FilesMATLABR2011btoolboxSimulinkSimulinkblocksslblocks.m') ' {: X) Z' C1 A7 D" ^9 D* _* r* a+ c: n
这样就可以打开slbocks.m文件模板,为了将自定义的模块库显示在Library Browser窗口下,需要对该程序进行修改。首先把slbocks.m文件拷贝到自定义库文件 - U: ^. d) }" i% d. b4 H4 w' n
同一目录下(即刚才创建的路径),然后打开该文件进行如下修改(红色为所作修改),并保存: 0 L" k$ {2 l/ b% j( O
function blkStruct = slblocks ) W$ Y3 y1 }& R# ~! f%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: % * ?) f4 N( `5 F; S( q; p% Name Name of the Blockset in the Simulink block library % Blocksets & Toolboxes subsystem. $ V/ t+ F J( Q% OpenFcn MATLAB expression_r(function) to call when you % double-click on the block in the Blocksets & Toolboxes % subsystem. - p e* V. H! p+ H. {8 F6 N- v% MaskDisplay Optional field that specifies the Mask Display commands % to use for the block in the Blocksets & Toolboxes % subsystem. / T" \/ z$ c# t2 }* w
% Browser Array of Simulink Library Browser structures, described % below. 5 Q/ K# U! i' k7 w / L4 k1 o5 S7 O3 X6 n- _; x p+ X" S$ m; o+ C4 C
$ `5 A" i( L# q% F5 d G( C+ e2 f
" }# q1 ~% F% D( |5 J: S/ E. ~
}5 }7 r/ M# D2 [- E) ^
1 }) u) b& x- _1 E, ]
8 w# b& x! p$ ?$ @; K' b& ~3 i8 ]6 }* Z- r& s
% 2 Z, j$ o5 t7 d4 {! s
% 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: % 0 i" O1 `) S$ k& I3 E& p% Library File name of the library (mdl-file) to include in the % Library Browser. - D) v1 m6 v' P- L: D
% 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. % % t9 i% n( T% p* S- L# k/ W2 E/ ]/ ]
% Example: % % % ! r3 w9 j$ i* d$ @, G5 l2 ?7 G+ B! B9 y
% % Define the BlocksetStruct for the Simulink block libraries % % Only simulink_extras shows up in Blocksets & Toolboxes % % 1 [2 w; u" N+ O- F7 i% blkStruct.Name = ['Simulink' sprintf('n') 'Extras']; % blkStruct.OpenFcn = 'simulink_extras'; ' a/ `( K1 Y' b: M9 e- f% blkStruct.MaskDisplay = sprintf('SimulinknExtras'); % % % * N9 Z9 x, z8 a; Y1 A4 T# L
% % Both simulink and simulink_extras show up in the Library Browser. % % 4 d' S! ~6 P4 L; v/ Q* o% blkStruct.Browser(1).Library = 'simulink'; % blkStruct.Browser(1).Name = 'Simulink'; % blkStruct.Browser(2).Library = 'simulink_extras'; % blkStruct.Browser(2).Name = 'Simulink Extras'; % - o8 N3 n4 {# v! F" B7 W4 u- P% Copyright 1990-2006 The MathWorks, Inc. % $Revision: 1.20.2.10 $ % . a1 n/ p$ w. K" p% Name of the subsystem which will show up in the Simulink Blocksets * e1 n6 w0 A$ k
" o# K3 o- G g0 t( F" Y
4 H' p7 y" v& s. N
: F) l L+ |" U8 m
% and Toolboxes subsystem. % / u' J/ Z- \( T! e
blkStruct.Name = ['Simulink' sprintf('n') 'Extras']; % $ T( I0 q" U/ {% k+ ^9 w
% The function that will be called when the user double-clicks on % this icon. % & J+ Q0 B: L; E% s- d5 i% g, kblkStruct.OpenFcn = 'simulink_extras'; % ' `) n1 T8 \5 \+ Y# J
% 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. % i7 ?0 R* t" Q1 `, eblkStruct.MaskDisplay = ''; % # N5 h2 o6 t- |% E4 w$ A8 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. % 5 ?/ A N& @' }# DBrowser(1).Library = 'Own_efinition'; %这个是库文件名 * b- J: b' o v2 V- y$ ~: v5 NBrowser(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'; # d5 i5 N# d- K( J- RBrowser(2).IsFlat = 0;% Is this library "flat" (i.e. no subsystems)? blkStruct.Browser = Browser; clear Browser; % % H" _! X/ ?5 v0 c
% Define information about Signal Viewers % 8 x7 \$ N4 v4 \4 \$ R9 u- bViewer(1).Library = 'simviewers'; Viewer(1).Name = 'Simulink'; blkStruct.Viewer = Viewer; clear Viewer; $ s3 Y& ^1 {5 [- q+ ?& h. ?& S/ ^
1 P+ I$ ?/ b; H) x; M
( N4 m+ _7 ]! z
% , Q. B* S7 ~2 G, F# c
% Define information about Signal Generators % ' r% n$ V& ]! b* Z) u5 `: vGenerator(1).Library = 'simgens'; Generator(1).Name = 'Simulink'; blkStruct.Generator = Generator; clear Generator; , {, V: E8 s/ m- N% Define information for model updater + L/ t( r$ V3 ?& t, @
%blkStruct.ModelUpdaterMethods.fhDetermineBrokenLinks = @UpdateSimulinkBrokenLinksMappingHelper; ; C5 d2 K2 ]3 V0 ~9 F
blkStruct.ModelUpdaterMethods.fhSeparatedChecks = @UpdateSimulinkBlocksHelper; % End of slblocks 7 E+ K2 O5 E% P; c# @: `
5、再打开Simulink Library Browser,按F5刷新,即可看到自定义的模块库,展开后可以看到内部的自定义模块。那么用户可以方便地进行拖放模块,就可以使用 自定义的封装模块了。 1 k/ E% P( o4 l0 `& L( q8 M2 t如果还要在新建的模块库下面创建子模块库,需要把Subsystem模块加入到模块库中,打开Subsystem模块,删除所有内容(ports等元件),添加自己创建的模块 6 u1 c3 k+ _/ Q% _& ]3 L保存即可,然后重新打开Simulink Library Browser,按F5刷新,即可看到自定义的模块库和字模块库。1 j+ x8 a& t3 w. B; ]. p/ N2 u
: a7 n. p: i" E' H- M 6 a" f1 {$ T3 [* q. N: z/ t* Y