Mercurial > hg > ltpda
comparison m-toolbox/m/gui/gltpda/ltpdalib.m @ 0:f0afece42f48
Import.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 23 Nov 2011 19:22:13 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:f0afece42f48 |
---|---|
1 function ltpdalib() | |
2 %LTPDALIB Open LTPDA Package Library. | |
3 % | |
4 % LTPDALIB opens the latest version of LTPDA Library Blockset. | |
5 % | |
6 % | |
7 % Other information available for the LTPDA Blockset: | |
8 % help ltpda - to view the Contents file | |
9 % | |
10 | |
11 % N Tateo | |
12 % $Id: ltpdalib.m,v 1.1 2008/03/01 13:43:20 nicola Exp $ $Date: 2008/03/01 13:43:20 $ | |
13 | |
14 if ~isempty(nargchk(0,0,nargin)) | |
15 error('ltpda:ltpdalib:invalidnumberinputs','Too many inputs'); | |
16 end | |
17 | |
18 % Attempt to open library: | |
19 model = 'ltpda_library'; | |
20 | |
21 try | |
22 open_system(model); | |
23 catch | |
24 error('ltpda:ltpdalib:invalidmodelname',['Could not find LTPDA Library (' model '.mdl).']); | |
25 end | |
26 | |
27 % end of ltpdalib.m |