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/czt.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/czt.sci')
-rw-r--r-- | macros/czt.sci | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/macros/czt.sci b/macros/czt.sci index b027489..84a0253 100644 --- a/macros/czt.sci +++ b/macros/czt.sci @@ -1,4 +1,23 @@ function y = czt(x, varargin) +//Chirp Z Transform +//Calling Sequence +//czt (x) +//czt (x, m) +//czt (x, m, w) +//czt (x, m, w, a) +//Parameters +//x: Input scalar or vector +//m: Total Number of steps +//w: ratio between points in each step +//a: point in the complex plane +//Description +//This is an Octave function. +//Chirp z-transform. Compute the frequency response starting at a and stepping by w for m steps. a is a point in the complex plane, and w is the ratio between points in each step (i.e., radius increases exponentially, and angle increases linearly). +//Examples +// m = 32; ## number of points desired +// w = exp(-j*2*pi*(f2-f1)/((m-1)*Fs)); ## freq. step of f2-f1/m +// a = exp(j*2*pi*f1/Fs); ## starting at frequency f1 +// y = czt(x, m, w, a); funcprot(0); lhs= argn(1); |