马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
load fisheririsxdata = meas(51:end,3:4);
group = species(51:end);
svmStruct = svmtrain(xdata,group,'showplot',true);
species = svmclassify(svmStruct,[5 2],'showplot',true)
hold on;plot(5,2,'ro','MarkerSize',12);
hold offspecies = 'virginica' 这个是MATLAB里自带的例子,为什么我运行总出错,
错误如下: Error using svmclassify (line 59)
The first input should be a struct generated by SVMTRAIN.
求高手解答,非常感谢
|