from
DeltaRule
by Will Dwinnell
Trains a single artificial neuron using the delta rule.
|
| Logistic(Input)
|
% Logistic: calculates the logistic function of the input
% by Will Dwinnell
%
% Last modified: Sep-02-2006
function Output = Logistic(Input)
Output = 1 ./ (1 + exp(-Input));
% EOF
|
|
Contact us at files@mathworks.com