summaryrefslogtreecommitdiff
path: root/macros/synthesis.sci
diff options
context:
space:
mode:
authorAbhinav Dronamraju2017-11-10 14:59:26 +0530
committerAbhinav Dronamraju2017-11-10 14:59:26 +0530
commit47535ab08afeb48fbb00f03e68d6ff973cf62cbd (patch)
tree732f6946451fb15f5639fe454ef17fbba2d5012f /macros/synthesis.sci
parentc54a48768d92ccf0f268b4b3b1a762c154865a02 (diff)
downloadFOSSEE-Signal-Processing-Toolbox-47535ab08afeb48fbb00f03e68d6ff973cf62cbd.tar.gz
FOSSEE-Signal-Processing-Toolbox-47535ab08afeb48fbb00f03e68d6ff973cf62cbd.tar.bz2
FOSSEE-Signal-Processing-Toolbox-47535ab08afeb48fbb00f03e68d6ff973cf62cbd.zip
Functions added
Diffstat (limited to 'macros/synthesis.sci')
-rw-r--r--macros/synthesis.sci16
1 files changed, 16 insertions, 0 deletions
diff --git a/macros/synthesis.sci b/macros/synthesis.sci
new file mode 100644
index 0000000..e787c86
--- /dev/null
+++ b/macros/synthesis.sci
@@ -0,0 +1,16 @@
+function x= synthesis(Y,C)
+
+funcprot(0);
+lhs= argn(1);
+rhs= argn(2);
+
+if(rhs<2 | rhs >2)
+ error("Wrong number of input arguments");
+end
+
+select(rhs)
+ case 2 then
+ x= callOctave("synthesis", Y,C);
+
+end
+endfunction