summaryrefslogtreecommitdiff
path: root/macros/sigmoid_train.sci
blob: bba751de2254892f3e162b97aa140d5fb4516a46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
function y =sigmoid_train(t, ranges, rc)
funcprot(0);
rhs=argn(2);
if (rhs<3 | rhs>3) then
    error("Wrong number of input arguments");
end

select(rhs)
case 3 then
    y=callOctave("sigmoid_train", t, ranges, rc)
end
endfunction