Mercurial > hg > ltpda
comparison m-toolbox/classes/@ao/tfe.m @ 43:bc767aaa99a8
CVS Update
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Tue, 06 Dec 2011 11:09:25 +0100 |
parents | f0afece42f48 |
children |
comparison
equal
deleted
inserted
replaced
0:f0afece42f48 | 43:bc767aaa99a8 |
---|---|
15 % | 15 % |
16 % OUTPUTS: b - output analysis object | 16 % OUTPUTS: b - output analysis object |
17 % | 17 % |
18 % <a href="matlab:utils.helper.displayMethodInfo('ao', 'tfe')">Parameters Description</a> | 18 % <a href="matlab:utils.helper.displayMethodInfo('ao', 'tfe')">Parameters Description</a> |
19 % | 19 % |
20 % VERSION: $Id: tfe.m,v 1.36 2011/04/08 08:56:13 hewitson Exp $ | 20 % VERSION: $Id: tfe.m,v 1.37 2011/12/01 09:01:48 hewitson Exp $ |
21 % | 21 % |
22 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | 22 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
23 | 23 |
24 function varargout = tfe(varargin) | 24 function varargout = tfe(varargin) |
25 | 25 |
69 else | 69 else |
70 sets = {'Default'}; | 70 sets = {'Default'}; |
71 pl = getDefaultPlist(); | 71 pl = getDefaultPlist(); |
72 end | 72 end |
73 % Build info object | 73 % Build info object |
74 ii = minfo(mfilename, 'ao', 'ltpda', utils.const.categories.sigproc, '$Id: tfe.m,v 1.36 2011/04/08 08:56:13 hewitson Exp $', sets, pl); | 74 ii = minfo(mfilename, 'ao', 'ltpda', utils.const.categories.sigproc, '$Id: tfe.m,v 1.37 2011/12/01 09:01:48 hewitson Exp $', sets, pl); |
75 ii.setModifier(false); | 75 ii.setModifier(false); |
76 ii.setArgsmin(2); | 76 ii.setArgsmin(2); |
77 end | 77 end |
78 | 78 |
79 %-------------------------------------------------------------------------- | 79 %-------------------------------------------------------------------------- |
90 function pl = buildplist() | 90 function pl = buildplist() |
91 | 91 |
92 % General plist for Welch-based, linearly spaced spectral estimators | 92 % General plist for Welch-based, linearly spaced spectral estimators |
93 pl = plist.WELCH_PLIST; | 93 pl = plist.WELCH_PLIST; |
94 | 94 |
95 p = param('newMethod', paramValue.TRUE_FALSE); | |
96 pl.append(p); | |
95 end | 97 end |
96 | 98 |