summaryrefslogtreecommitdiff
path: root/macros/synthesis.sci
diff options
context:
space:
mode:
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