我正在使用按元素操作,并且仍然在Octave中得到错误不符合要求的参数。代码已在下面给出
function g = sigmoid(z)
g = zeros(size(z));
% Instructions: Compute the sigmoid of each value of z (z can be a
% matrix,vector or scalar).
g = 1./(1+exp(-z));
end
错误是 “错误:sigmoid:运算符/:参数不一致(op1为1x1,op2为1x4)”
有人可以帮忙吗?谢谢