安装了matlab2014b后,突然发现Simulink Library Browser窗口中没有内容,找了一种方法添加进去,希望对有需要的朋友有所帮助! 7 w' `$ r7 i" g3 {0 k1、创建库文件:打开Simulink Library Browser窗口。要建立Simulink库文件,首先启动Simulink工作窗口,单击菜单栏【File】下的【New】选项,选择【library】选项, 打开一个新的Library窗口界面,此时,用户可以将自己需要添加的一些模块加入到新的窗口中。然后保存为Own_efinition.mdl(所需要定义的库文件名称)。这样,就建立了一个 自定义的库文件。 ' M& p- r4 i( W6 |1 Y! V2 |
2、在Matlab路径下创建存放库文件的路径,也即自定义的模块库在Library Browser下的显示位置。注意在Matlab中,每一个模块库文件所在的路径必须不同。 ) W0 Q9 Z! E) A I- ~创建的Maltab路径是:Drogram FilesMATLABR2011btoolboxSimulinkSimulinkMyLibrary(根据自己的Matlab安装路径来确定),其中MyLibrary为自定义的文件夹。 ( D6 z( H! B5 X" j' ]1 a8 Q3、将第一步中建立的库文件拷贝到新建的Matlab路径下。在Matlab主窗口的【File】菜单栏下选择【Set Path】选项,然后单击【Add Folder】按钮,将新建的 路径添加进来,然后保存(Save),退出(Close)。 9 h, d' Y9 {$ b C' d E4、要显示自定义的模块库,还需要拷贝slblocks.m函数到新建的路径下。在Matlab的命令窗口中输入: 5 s2 H6 d7 Z- D4 F# B>> which('slblocks.m', '-all') - S( R& M2 M6 y2 \6 ^0 f4 ]>> open('Drogram FilesMATLABR2011btoolboxSimulinkSimulinkblocksslblocks.m') 6 a1 y7 I3 |9 ]. B+ f+ p2 k7 ~3 |4 ?" P9 Z
这样就可以打开slbocks.m文件模板,为了将自定义的模块库显示在Library Browser窗口下,需要对该程序进行修改。首先把slbocks.m文件拷贝到自定义库文件 8 U6 J# E" F" h+ m5 Y
同一目录下(即刚才创建的路径),然后打开该文件进行如下修改(红色为所作修改),并保存: " s+ L/ L! i, J: Y: f7 r8 D7 p
function blkStruct = slblocks 7 G' k6 q7 f% _8 |2 ~. \' e$ A: i%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: % ! W | b2 S# G2 E3 J0 W7 y! [2 a% Name Name of the Blockset in the Simulink block library % Blocksets & Toolboxes subsystem. 4 x( x# h1 J: H, A, R, i& [9 ?
% OpenFcn MATLAB expression_r(function) to call when you % double-click on the block in the Blocksets & Toolboxes % subsystem. 3 C* k! p I5 j! x* y
% MaskDisplay Optional field that specifies the Mask Display commands % to use for the block in the Blocksets & Toolboxes % subsystem. % |! a5 a" m8 q$ `
% Browser Array of Simulink Library Browser structures, described % below. B$ Y! I- `; E2 x% I
7 U! W3 S& s& b0 N: E, k' C
% o- M* G- q( o1 J$ n' O# X4 L
! e, f4 Y0 B& q7 @
; H7 h. b6 v$ G7 p z4 r! H
2 d8 R: D4 M0 ?& l
# y" p" G( h( \" Q& t5 }# g0 Y& w8 `% X& f
8 f% Z2 _$ O; V2 X$ C: W% , j& c+ L' I1 d, [, E$ P3 ?, N& T. b% 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: % $ l$ m3 b( M; {% Library File name of the library (mdl-file) to include in the % Library Browser. 1 M$ V/ ?" ]( _8 M
% 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. % - [3 V4 J t' r4 l# k' u- O9 d% Example: % % % * N) X$ b. e% Z+ h
% % Define the BlocksetStruct for the Simulink block libraries % % Only simulink_extras shows up in Blocksets & Toolboxes % % : e( S5 P$ i, Y+ D. y
% blkStruct.Name = ['Simulink' sprintf('n') 'Extras']; % blkStruct.OpenFcn = 'simulink_extras'; J6 ]( l4 o0 Y) T& h+ s% blkStruct.MaskDisplay = sprintf('SimulinknExtras'); % % % 7 o* t* t" ^( Y+ G- D% % Both simulink and simulink_extras show up in the Library Browser. % % 1 [! `, z1 m& X! F: M% blkStruct.Browser(1).Library = 'simulink'; % blkStruct.Browser(1).Name = 'Simulink'; % blkStruct.Browser(2).Library = 'simulink_extras'; % blkStruct.Browser(2).Name = 'Simulink Extras'; % - [* ^# C2 D3 H3 E6 }% E. J$ o' p5 p
% Copyright 1990-2006 The MathWorks, Inc. % $Revision: 1.20.2.10 $ % ' `! n4 A: P! H1 P% Name of the subsystem which will show up in the Simulink Blocksets / ^9 Z. k) `1 h/ x1 K' [- Y
5 Y) T) Z/ h+ e* c* v; l& y
+ u! M, U; W. Q+ ^. e2 a8 _4 ^ * ~4 r6 n- i4 N$ P% and Toolboxes subsystem. % ; W5 W5 j# o/ _+ |- j
blkStruct.Name = ['Simulink' sprintf('n') 'Extras']; % ' t' G( X6 l8 X4 }/ u% The function that will be called when the user double-clicks on % this icon. % 9 P% w9 v n+ _/ |6 L
blkStruct.OpenFcn = 'simulink_extras'; % ' k6 ^; L0 u) Z% S c0 e: a& P
% 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. % # p( B7 W7 d" r$ {
blkStruct.MaskDisplay = ''; % ; ^/ Q& t, P6 w
% 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. % d# ~; d" N* t. ~& A6 W
Browser(1).Library = 'Own_efinition'; %这个是库文件名 9 A# a) k) N) TBrowser(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'; 5 J* @# D* W8 K' @5 q/ @
Browser(2).IsFlat = 0;% Is this library "flat" (i.e. no subsystems)? blkStruct.Browser = Browser; clear Browser; % * x! z/ t; s: |4 C8 G& b- r, n7 ~
% Define information about Signal Viewers % * N+ [! _/ U, H) l; v: e7 t
Viewer(1).Library = 'simviewers'; Viewer(1).Name = 'Simulink'; blkStruct.Viewer = Viewer; clear Viewer; : e% X R' q. E( ~# R
4 ]; }! X. o4 i
. T5 L( _) q. p; e0 p6 b8 @% ; h, x0 Q: o& b
% Define information about Signal Generators % . `: q$ c' G; n6 @2 r0 m: y9 ZGenerator(1).Library = 'simgens'; Generator(1).Name = 'Simulink'; blkStruct.Generator = Generator; clear Generator; 8 p- I$ a3 I9 p" T' T
% Define information for model updater 8 a7 Z" L; K! y' B) w6 e%blkStruct.ModelUpdaterMethods.fhDetermineBrokenLinks = @UpdateSimulinkBrokenLinksMappingHelper; - J8 h2 j7 Z$ |) W
blkStruct.ModelUpdaterMethods.fhSeparatedChecks = @UpdateSimulinkBlocksHelper; % End of slblocks ) c% C5 t' r; x5、再打开Simulink Library Browser,按F5刷新,即可看到自定义的模块库,展开后可以看到内部的自定义模块。那么用户可以方便地进行拖放模块,就可以使用 自定义的封装模块了。 2 B% U6 U0 H5 U8 O0 q如果还要在新建的模块库下面创建子模块库,需要把Subsystem模块加入到模块库中,打开Subsystem模块,删除所有内容(ports等元件),添加自己创建的模块 & Q3 U7 p" O& ?5 t( X# g6 i* C保存即可,然后重新打开Simulink Library Browser,按F5刷新,即可看到自定义的模块库和字模块库。 5 ]) b2 h+ g/ Q6 i6 {0 B& S4 x / Y! T+ V- ^ P! f. |/ A# Y! p2 ^; Q- n