LTPDA_RMS Calculate RMS deviation from spectrum %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% DESCRIPTION: LTPDA_RMS Calculate RMS deviation from spectrum CALL: b=ltpda_rms(a) PARAMETERS: b - analysis object containing RMS deviation a - input analysis object containing spectrum VERSION: $Id: ltpda_rms.m,v 1.9 2008/08/10 20:16:49 hewitson Exp $ NOTE: Taken from code by: 1998.05.25 Masaki Ando HISTORY: 12-02-07 M Hewitson Creation %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0001 % LTPDA_RMS Calculate RMS deviation from spectrum 0002 % 0003 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0004 % 0005 % DESCRIPTION: LTPDA_RMS Calculate RMS deviation from spectrum 0006 % 0007 % CALL: b=ltpda_rms(a) 0008 % 0009 % PARAMETERS: b - analysis object containing RMS deviation 0010 % a - input analysis object containing spectrum 0011 % 0012 % VERSION: $Id: ltpda_rms.m,v 1.9 2008/08/10 20:16:49 hewitson Exp $ 0013 % 0014 % NOTE: Taken from code by: 1998.05.25 Masaki Ando 0015 % 0016 % HISTORY: 12-02-07 M Hewitson 0017 % Creation 0018 % 0019 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0020 0021 function varargout = ltpda_rms(varargin) 0022 0023 warning('!!! This function is deprecated and will be removed from future versions of LTPDA. Use ao/rms now.'); 0024 0025 % Call ao/psd 0026 bs = rms(varargin{:}); 0027 0028 % set output 0029 varargout{1} = bs; 0030 0031 end