blob: e787c8649163bea0432fed56b1c57753f3720fe0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
|