Home > m > gui > gltpda > ltpdalib.m

ltpdalib

PURPOSE ^

LTPDALIB Open LTPDA Package Library.

SYNOPSIS ^

function ltpdalib()

DESCRIPTION ^

LTPDALIB Open LTPDA Package Library.

  LTPDALIB opens the latest version of LTPDA Library Blockset.


  Other information available for the LTPDA Blockset:
    help ltpda      - to view the Contents file

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function ltpdalib()
0002 %LTPDALIB Open LTPDA Package Library.
0003 %
0004 %  LTPDALIB opens the latest version of LTPDA Library Blockset.
0005 %
0006 %
0007 %  Other information available for the LTPDA Blockset:
0008 %    help ltpda      - to view the Contents file
0009 %
0010 
0011 % N Tateo
0012 % $Id: ltpdalib.m,v 1.1 2008/03/01 13:43:20 nicola Exp $  $Date: 2008/03/01 13:43:20 $
0013 
0014 if ~isempty(nargchk(0,0,nargin))
0015    error('ltpda:ltpdalib:invalidnumberinputs','Too many inputs');
0016 end
0017 
0018 % Attempt to open library:
0019 model = 'ltpda_library';
0020 
0021 try
0022    open_system(model);
0023 catch
0024    error('ltpda:ltpdalib:invalidmodelname',['Could not find LTPDA Library (' model '.mdl).']);
0025 end
0026 
0027 % end of ltpdalib.m

Generated on Mon 31-Mar-2008 13:54:54 by m2html © 2003