blob: 006a2e0aa6ab81d4b96fc37ce21d88b4291d3d50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
function y= sinetone(x, varargin)
funcprot(0);
rhs= argn(2);
if(rhs<1 | rhs>4)
error("Wrong number of input arguments")
end
select(rhs)
case 1 then
y= callOctave("sinetone", x);
case 2 then
y= callOctave("sinetone", x , varargin(1));
case 3 then
y= callOctave("sinetone", x , varargin(1), varargin(2));
case 4 then
y= callOctave("sinetone", x , varargin(1), varargin(2), varargin(3));
end
endfunction
|