답변:
스칼라, 벡터 또는 행렬의 시그 모이 드를 계산합니다.
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
g = 1 ./ (1 + exp(-z));
이것을 만드는 대신 사용할 수 있습니다. SIGMOID
sigmoid