mirror of
https://github.com/jlengrand/MachineLearningCoursera.git
synced 2026-03-10 08:31:20 +00:00
7 lines
137 B
Matlab
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
|