92
93% Sigmoid Symmetric Transfer Function
94function a = tansig_apply(n)
95a = 2 ./ (1 + exp(-2*n)) - 1;
96end