summaryrefslogtreecommitdiff
path: root/macros/synthesis.sci
diff options
context:
space:
mode:
Diffstat (limited to 'macros/synthesis.sci')
-rw-r--r--macros/synthesis.sci11
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);