回答:
これは、スカラー、ベクトルまたは行列のシグモイドを計算します。
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
関数内で作成する代わりに、単に使用することができます。