NNDemo2.0是对神经网络实验演示系统NNDemo1.0的进一步增强与扩充

源代码在线查看: example42_figure.m

软件大小: 536 K
上传用户: yhw002
关键词: NNDemo 2.0 1.0 神经网络
下载地址: 免注册下载 普通下载 VIP

相关代码

				
				%svm2_figure:to look the figure of input data
				%==============
				%==============
				
				clc
				
				iris = load('example42_iris.txt');
				
				x = iris(:,3:4);
				y = 2*(iris(:,5) == 2)-1;
				
				
				
				figure('name','输入数据图示','numbertitle','off');
				
				plot(x(find(y==1),1)',x(find(y==1),2)','bs',x(find(y==-1),1)',x(find(y==-1),2)','ko')
				axis(axis + [-0.1 +0.1 -0.1 +0.1])
				legend('class one','class two',0);			

相关资源