ECG-Kit 1.0

File: <base>/common/prtools_addins/logistic.m (65 bytes)
%Sigmoid function
function[y] = logistic(x)
y = 1./(1 + exp(-x));