diff options
author | bgtushar | 2017-11-27 11:14:24 +0530 |
---|---|---|
committer | GitHub | 2017-11-27 11:14:24 +0530 |
commit | 25a88252ee49c73acb18232f6e916d7742a1af80 (patch) | |
tree | 9161ea9a7940e36a21f0855a7805e24f7b002d8a /macros/spectral_adf.sci | |
parent | e9ab4b0b52db51be30f4ac3d07673c20b48da13c (diff) | |
parent | ff8b1285a880cc28c68d8b224b20b8ccff8e5422 (diff) | |
download | FOSSEE-Signal-Processing-Toolbox-25a88252ee49c73acb18232f6e916d7742a1af80.tar.gz FOSSEE-Signal-Processing-Toolbox-25a88252ee49c73acb18232f6e916d7742a1af80.tar.bz2 FOSSEE-Signal-Processing-Toolbox-25a88252ee49c73acb18232f6e916d7742a1af80.zip |
Merge pull request #5 from abhinavdronamraju/master
Help files created and Updated Readme.md
Diffstat (limited to 'macros/spectral_adf.sci')
-rw-r--r-- | macros/spectral_adf.sci | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/macros/spectral_adf.sci b/macros/spectral_adf.sci index ea81f42..38b3990 100644 --- a/macros/spectral_adf.sci +++ b/macros/spectral_adf.sci @@ -1,5 +1,20 @@ function y= spectral_adf(x, varargin) +// Return the spectral density estimator given a vector of autocovariances C, window name WIN, and bandwidth, B. +//Calling Sequence +//spectral_adf(C) +//spectral_adf(C, WIN) +//spectral_adf(C, WIN, B) +//Parameters +//C: Autocovariances +//WIN: Window names +//B: Bandwidth +//Description +//Return the spectral density estimator given a vector ofautocovariances C, window name WIN, and bandwidth, B. +//The window name, e.g., "triangle" or "rectangle" is used to search for a function called 'WIN_lw'. +//If WIN is omitted, the triangle window is used. +//If B is omitted, '1 / sqrt (length (C))' is used. + funcprot(0); rhs= argn(2); if(rhs<1 | rhs>3) |