view m-toolbox/sltpda/sltpda_valid_block_list.m @ 50:7d2e2e065cf1
database-connection-manager
Update unit tests
author |
Daniele Nicolodi <nicolodi@science.unitn.it> |
date |
Wed, 07 Dec 2011 17:24:37 +0100 (2011-12-07) |
parents |
f0afece42f48 |
children |
|
line source
function blocks = sltpda_valid_block_list()
% SLTPDA_VALID_BLOCK_LIST returns a cell array of valid block names for
% sLTPDA.
%
% usage: list = sltpda_valid_block_list();
%
% M Hewitson 28-03-07
%
% $Id: sltpda_valid_block_list.m,v 1.9 2007/05/02 15:19:19 hewitson Exp $
%
blocks = {'ao', 'save', 'display', 'attachmdl', 'figure,plot',...
'convert', 'string', 'get', 'split', 'mux', 'demux', ...
'filter', 'filtfilt', ...
'abs', 'plus', 'minus', 'times', 'rdivide', 'sqrt', ...
'ltpda_lincom', 'ltpda_polydetrend', ...
'ltpda_timedomainfit', 'ltpda_pwelch', 'ltpda_tfe', ...
'ltpda_lpsd', 'resample',...
'plist', 'param', 'iparam', 'specwin',...
'pole', 'zero', 'pzmodel', 'resp', 'miir', 'iirResp'...
'demux', 'Constant', 'pzmresp'...
};
% END