blob: 1731dc11bd8ec09d748c9ec42751efbb45d2fcc2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
function y= fractdiff(x,d)
funcprot(0);
rhs= argn(2);
if(rhs < 2 | rhs >2)
error("Wrong number of input arguments");
end
select(rhs)
case 2 then
y= callOctave("fractdiff",x,d);
end
endfunction
|