该系统使用极其简便

源代码在线查看: example42_figure.m

软件大小: 523 K
上传用户: nassdaq
关键词:
下载地址: 免注册下载 普通下载 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);			

相关资源