from
Simulink Library: Performance Index
by Yi Cao
A small simulink library to provide performance index measurements.
|
| slblocks
|
function blkStruct = slblocks
%SLBLOCKS Defines the block library for a specific Toolbox or Blockset.
% Copyright 1986-2003 The MathWorks, Inc.
% $Revision: 1.13.4.2 $
% Name of the subsystem which will show up in the SIMULINK Blocksets
% and Toolboxes subsystem.
% Example: blkStruct.Name = 'DSP Blockset';
blkStruct.Name = sprintf('Performance Indices');
% The function that will be called when the user double-clicks on
% this icon.
% Example: blkStruct.OpenFcn = 'dsplib';
blkStruct.OpenFcn = 'indexlib;';%.mdl file
% 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]));';
%blkStruct.MaskDisplay = 'disp(''LTI'')';
% Define the library list for the Simulink Library browser.
% Return the name of the library model and the name for it
Browser(1).Library = 'indexlib';
Browser(1).Name = 'Performance Indices';
Browser(1).IsFlat = 1;
blkStruct.Browser = Browser;
|
|
Contact us at files@mathworks.com