Mercurial > hg > ltpda
comparison m-toolbox/classes/@ao/ao.m @ 43:bc767aaa99a8
CVS Update
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Tue, 06 Dec 2011 11:09:25 +0100 |
parents | f0afece42f48 |
children | a59cdb8aaf31 |
comparison
equal
deleted
inserted
replaced
0:f0afece42f48 | 43:bc767aaa99a8 |
---|---|
27 % | 27 % |
28 % <a href="matlab:utils.helper.displayConstructorExamples('ao')">Examples</a> | 28 % <a href="matlab:utils.helper.displayConstructorExamples('ao')">Examples</a> |
29 % | 29 % |
30 % <a href="matlab:utils.helper.displayMethodInfo('ao', 'ao')">Parameters Description</a> | 30 % <a href="matlab:utils.helper.displayMethodInfo('ao', 'ao')">Parameters Description</a> |
31 % | 31 % |
32 % VERSION: $Id: ao.m,v 1.361 2011/08/22 05:23:45 hewitson Exp $ | 32 % VERSION: $Id: ao.m,v 1.362 2011/12/01 08:30:52 hewitson Exp $ |
33 % | 33 % |
34 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | 34 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
35 | 35 |
36 | 36 |
37 % AO analysis object class constructor. | 37 % AO analysis object class constructor. |
108 % object | 108 % object |
109 % a = ao(plist) - creates an analysis object from the description | 109 % a = ao(plist) - creates an analysis object from the description |
110 % given in the parameter list | 110 % given in the parameter list |
111 % | 111 % |
112 % | 112 % |
113 % VERSION: $Id: ao.m,v 1.361 2011/08/22 05:23:45 hewitson Exp $ | 113 % VERSION: $Id: ao.m,v 1.362 2011/12/01 08:30:52 hewitson Exp $ |
114 % | 114 % |
115 % Parameter sets for plist constructor (in order of priority): | 115 % Parameter sets for plist constructor (in order of priority): |
116 % | 116 % |
117 % Notes and examples for some parameter sets follow: | 117 % Notes and examples for some parameter sets follow: |
118 % | 118 % |
773 ]; | 773 ]; |
774 % {'From CSD'}, ... | 774 % {'From CSD'}, ... |
775 end | 775 end |
776 | 776 |
777 function out = VEROUT() | 777 function out = VEROUT() |
778 out = '$Id: ao.m,v 1.361 2011/08/22 05:23:45 hewitson Exp $'; | 778 out = '$Id: ao.m,v 1.362 2011/12/01 08:30:52 hewitson Exp $'; |
779 end | 779 end |
780 | 780 |
781 function ii = getInfo(varargin) | 781 function ii = getInfo(varargin) |
782 ii = utils.helper.generic_getInfo(varargin{:}, 'ao'); | 782 ii = utils.helper.generic_getInfo(varargin{:}, 'ao'); |
783 end | 783 end |
1356 % Methods (static, private) % | 1356 % Methods (static, private) % |
1357 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | 1357 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
1358 methods (Static = true, Access = private) | 1358 methods (Static = true, Access = private) |
1359 % constructor functions | 1359 % constructor functions |
1360 % Spectral estimate function | 1360 % Spectral estimate function |
1361 varargout = wosa(varargin); | |
1361 [yy, dyy, info] = welchscale(xx, dxx, win, fs, norm, inunits) | 1362 [yy, dyy, info] = welchscale(xx, dxx, win, fs, norm, inunits) |
1362 [x,M,isreal_x,y,Ly,win,winName,winParam,noverlap,k,L,options] = welchparse(x,esttype,varargin) | 1363 [x,M,isreal_x,y,Ly,win,winName,winParam,noverlap,k,L,options] = welchparse(x,esttype,varargin) |
1363 [P,f] = computeperiodogram(x,win,nfft,esttype,varargin) | 1364 [P,f] = computeperiodogram(x,win,nfft,esttype,varargin) |
1364 [Xx,f] = computeDFT(xin,nfft,varargin) | 1365 [Xx,f] = computeDFT(xin,nfft,varargin) |
1365 | 1366 |