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/synthesis.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/synthesis.sci')
-rw-r--r-- | macros/synthesis.sci | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/macros/synthesis.sci b/macros/synthesis.sci index e787c86..7224686 100644 --- a/macros/synthesis.sci +++ b/macros/synthesis.sci @@ -1,5 +1,14 @@ function x= synthesis(Y,C) - +//Compute a signal from its short-time Fourier transform +//Calling Sequence +//X= synthesis(Y,C) +//Parameters +//Y: Shirt-time fourier transform +//C: 3-element vector C specifying window size, increment, window type. +//Description +//Compute a signal from its short-time Fourier transform Y and a 3-element vector C specifying window size, increment, and window type. +//The values Y and C can be derived by +//[Y, C] = stft (X , ...) funcprot(0); lhs= argn(1); rhs= argn(2); |