Mercurial > hg > ltpda
comparison m-toolbox/sltpda/sltpda_valid_block_list.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 blocks = sltpda_valid_block_list() | |
2 | |
3 % SLTPDA_VALID_BLOCK_LIST returns a cell array of valid block names for | |
4 % sLTPDA. | |
5 % | |
6 % usage: list = sltpda_valid_block_list(); | |
7 % | |
8 % M Hewitson 28-03-07 | |
9 % | |
10 % $Id: sltpda_valid_block_list.m,v 1.9 2007/05/02 15:19:19 hewitson Exp $ | |
11 % | |
12 | |
13 blocks = {'ao', 'save', 'display', 'attachmdl', 'figure,plot',... | |
14 'convert', 'string', 'get', 'split', 'mux', 'demux', ... | |
15 'filter', 'filtfilt', ... | |
16 'abs', 'plus', 'minus', 'times', 'rdivide', 'sqrt', ... | |
17 'ltpda_lincom', 'ltpda_polydetrend', ... | |
18 'ltpda_timedomainfit', 'ltpda_pwelch', 'ltpda_tfe', ... | |
19 'ltpda_lpsd', 'resample',... | |
20 'plist', 'param', 'iparam', 'specwin',... | |
21 'pole', 'zero', 'pzmodel', 'resp', 'miir', 'iirResp'... | |
22 'demux', 'Constant', 'pzmresp'... | |
23 }; | |
24 | |
25 | |
26 | |
27 % END |