88
89% Sigmoid Symmetric Transfer Function
90function a = tansig_apply(n)
91a = 2 ./ (1 + exp(-2*n)) - 1;
92end