报runtimeWarning 虚线没出来
w=perceptron(xn,yn)#利用权重值w 计算y=ax+b中的a和bbnew=-w[0]/w[2];anew=-w[1]/w[2];print(anew,bnew)y=lambda x:anew*x+bnew# 分割颜色sep_color=(yn)/2.0plt.figure();figa=plt.gca()plt.scatter(xn[:,0],xn[:,1],c=sep_color.flatten(),s=50)plt.plot(x,y(x),'b--',label='感知机分类结果')plt.plot(x,f(x),'r',label='原始分类曲线')plt.legend()plt.title('原始曲线与感知机近似结果比较')