LTPDA_PWELCH makes power spectral density estimates of the time-series objects %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% DESCRIPTION: LTPDA_PWELCH makes power spectral density estimates of the time-series objects in the input analysis objects. This function is deprecated and will be removed in future versions. This just calls ao/pwelch now. VERSION: $Id: ltpda_pwelch.m,v 1.22 2008/08/10 20:16:49 hewitson Exp $ HISTORY: 07-02-2007 M Hewitson Creation %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0001 % LTPDA_PWELCH makes power spectral density estimates of the time-series objects 0002 % 0003 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0004 % 0005 % DESCRIPTION: LTPDA_PWELCH makes power spectral density estimates of the 0006 % time-series objects in the input analysis objects. 0007 % 0008 % This function is deprecated and will be removed in future versions. 0009 % This just calls ao/pwelch now. 0010 % 0011 % VERSION: $Id: ltpda_pwelch.m,v 1.22 2008/08/10 20:16:49 hewitson Exp $ 0012 % 0013 % HISTORY: 07-02-2007 M Hewitson 0014 % Creation 0015 % 0016 % 0017 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0018 0019 function varargout = ltpda_pwelch(varargin) 0020 0021 warning('!!! This function is deprecated and will be removed from future versions of LTPDA. Use ao/psd now.'); 0022 0023 % Call ao/psd 0024 bs = psd(varargin{:}); 0025 0026 % set output 0027 varargout{1} = bs; 0028 0029 end