我正在学习朱莉娅。是否可以在atom中使用@manipulate宏,或者有任何方法可以在ATOM IDE中显示它
using Plots,Interact
gr()
function sigmoid(z)
return 1/(1+e^-z)
end
f₁(x,w,b)=sigmoid.(w*x+b)
x=linspace(-10,10,101)
@manipulate for w=[-10,-5,-2.5,2.5,5,10] ,b=[-10,-5,-2.5,0,2.5,5,10]
y=f₁(x,w,b)
plot(x,y,label="sigmoid $w and $b",xlabel="x",ylabel="y",ylims=(0,1))
end