Code covered by the BSD License  

Highlights from
Adaptive Filtering

from Adaptive Filtering by Paulo S. R. Diniz
MATLAB files to implement all Adaptive Filtering Algorithms in this book.

[y]=sgm(x,c1,c2)
function [y]=sgm(x,c1,c2)
%  Funcao sigmoide
%  y = 2*c1/(1+exp(-c2*x))-c1

y=2*c1./(1+exp(-c2*x))-c1;

Contact us at files@mathworks.com