82
83% Sigmoid Symmetric Transfer Function
84function a = tansig_apply(n)
85a = 2 ./ (1 + exp(-2*n)) - 1;
86end