so given that the sigmoid function is defined as hθ(x) = g(θ^(T)x), how can I implement this funcion in Octave given that g = zeros(size(z)) ?
Asked
Active
Viewed 2.0k times
1 Answers
11
This will compute the sigmoid of a scalar, vector or matrix.
function g = sigmoid(z)
% SIGMOID Compute sigmoid function
% g = SIGMOID(z) computes the sigmoid of z.
% Compute the sigmoid of each value of z (z can be a matrix,
% vector or scalar).
SIGMOID = @(z) 1./(1 + exp(-z));
g = SIGMOID(z);
end
gingermander
- 573
- 3
- 11
g = 1 ./ (1 + exp(-z));instead of creating thisSIGMOIDinside thesigmoidfunction. – Alisson Reinaldo Silva Oct 11 '18 at 03:01g= 1./ (1 + exp(-z));careful about ./ divide had (dot sign) & parentheses of (1 + ...) is mandatory here, I spend mins debugging that. – Aung Baw May 28 '21 at 13:27