How to build a correct spline kernel for svm
이전 댓글 표시
Hi everybody,
I have a question regarding the implementation of kernels. I want to use a spline kernel which is not in the toolbox. the code is relatively easy.
z = 1 + u.*v + (1/2)*u.*v.*min(u,v) - (1/6)*(min(u,v)).^3;
k = prod(z);
but there is always an error because of the matrix dimensions. how can I solve it?
Thanks in advance
Daniel
답변 (1개)
Ilya
2013년 5월 11일
0 개 추천
Check out this thread and let us know if it helps: http://www.mathworks.com/matlabcentral/answers/57232-how-to-use-svmtrain-with-a-custom-kernel-in-matlab
카테고리
도움말 센터 및 File Exchange에서 Splines에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!