| 查看: 2803 | 回复: 0 | |||
samggyy金虫 (小有名气)
|
[求助]
Matlab如何使用绘图画出3D SVM的decision boundary?
|
|
RT,Matlab中可以画出二维的SVM的decision boundary,代码如下, load fisheriris; features = meas(1:100, ;featureSelcted = features(1:100,1:2); groundTruthGroup = species(1:100); svmStruct = svmtrain(featureSelcted, groundTruthGroup, ... 'Kernel_Function', 'rbf', 'boxconstraint', Inf, 'showplot', true, 'Method', 'QP'); svmClassified = svmclassify(svmStruct,featureSelcted,'showplot',true); 如果使用三维的特征,即把代码改为featureSelcted = features(1:100,1:3); 无法出一个三维的超平面了。思路可能是: cubeXMin = min(featureSelcted(:,1))-0.5; cubeYMin = min(featureSelcted(:,2))-0.5; cubeZMin = min(featureSelcted(:,3))-0.5; cubeXMax = max(featureSelcted(:,1))+0.5; cubeYMax = max(featureSelcted(:,2))+0.5; cubeZMax = max(featureSelcted(:,3))+0.5; cubeMesh = meshgrid(cubeXMin:0.5:cubeXMax,cubeYMin:0.5:cubeYMax,cubeZMin:0.5:cubeZMax); sv = svmStruct.SupportVectors; alphaHat = svmStruct.Alpha; bias = svmStruct.Bias; kfun = svmStruct.KernelFunction; kfunargs = svmStruct.KernelFunctionArgs; f = (feval(kfun,sv,cubeMesh,kfunargs{:})'*alphaHat( ) + bias;decisionBoundary = sign(f); decisionBoundaryInd = find(decisionBoundary==0); figure, scatter3(featureSelcted(:,1),featureSelcted(:,2),featureSelcted(:,3)); surf(decisionBoundaryInd); 但是不知道怎么完成,请教有没有人知道怎么做的。谢谢! ![]() 有一个用R写的例子: http://stackoverflow.com/questio ... -svm-fit-hyperplane 还有两篇论文中也有做到: http://www.sciencedirect.com/sci ... i/S0304394010006324 http://www.mathematica-journal.c ... ation-with-kernels/ |
» 收录本帖的淘帖专辑推荐
MATLAB相关 |
» 猜你喜欢
散金币祈福
已经有186人回复
求助,如何提取ELK的rt-TDDFT在某一时刻的自旋密度分布和电子密度分布
已经有1人回复
物理学I论文润色/翻译怎么收费?
已经有282人回复
澳门大学IAPME李海峰教授常年招收博士研究生
已经有0人回复
澳门大学IAPME李海峰教授常年招收博士研究生
已经有0人回复
澳门大学IAPME李海峰教授常年招收博士研究生
已经有0人回复
深圳大学应用技术学院招聘凝聚态物理博士后
已经有112人回复
深圳大学2027级光电信息工程/物理学研究生推免
已经有69人回复
求助中医院临床中医中标的青年标书学习,谢谢
已经有4人回复
浙大物院表面物理课题组长期招收普博及直博学生
已经有257人回复
【征稿】Springer Nature热电专题 Discover Materials / Discover Chemistry
已经有39人回复










;
回复此楼

点击这里搜索更多相关资源
20