diff options
author | Abhinav Dronamraju | 2017-11-24 19:19:30 +0530 |
---|---|---|
committer | Abhinav Dronamraju | 2017-11-24 19:19:30 +0530 |
commit | 11f08cc395ea1b0de77af3dbb87a985418fc3800 (patch) | |
tree | 0991c8646700449cd366089055f9e6c671253364 /macros/spectral_xdf.sci | |
parent | e3a1c5e215a7e9a074a3e6fa7171b2092c8c5cc0 (diff) | |
download | FOSSEE-Signal-Processing-Toolbox-11f08cc395ea1b0de77af3dbb87a985418fc3800.tar.gz FOSSEE-Signal-Processing-Toolbox-11f08cc395ea1b0de77af3dbb87a985418fc3800.tar.bz2 FOSSEE-Signal-Processing-Toolbox-11f08cc395ea1b0de77af3dbb87a985418fc3800.zip |
Created xml help files
Diffstat (limited to 'macros/spectral_xdf.sci')
-rw-r--r-- | macros/spectral_xdf.sci | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/macros/spectral_xdf.sci b/macros/spectral_xdf.sci index fe93327..f0d457b 100644 --- a/macros/spectral_xdf.sci +++ b/macros/spectral_xdf.sci @@ -1,5 +1,18 @@ function y= spectral_xdf(x, varargin) - +// Return the spectral density estimator given a data vector X, window name WIN, and bandwidth, B. +//Calling Sequence +//spectral_xdf(X) +//spectral_xdf(X, WIN) +//spectral_xdf(X, WIN, B) +//Parameters +//X: Data Vector +//WIN: Window names +//B: Bandwidth +//Description +//Return the spectral density estimator given a data vector X, 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 (X))' is used. funcprot(0); rhs= argn(2); if(rhs<1 | rhs>3) |