Files
test/machine_learning/mlclass-ex4-008/mlclass-ex4/sigmoid.m

7 lines
137 B
Matlab

function g = sigmoid(z)
%SIGMOID Compute sigmoid functoon
% J = SIGMOID(z) computes the sigmoid of z.
g = 1.0 ./ (1.0 + exp(-z));
end