SVM Quadprog Matlab unbound error -


I am implementing STMM via matlab, not using svmtrain. I generate irregular separation data and its labels. Then solve the quadratic problem using the quadpraw code is below the code.

  Option = Optimization ('QuadProog', 'Algorithm', 'Active-Set', 'Display', 'None', 'Maxiter', 500); [Xsol, fsolv, excaphlag, output] = quadprog (-h, -f, [], [], aec, beac, lb, [], [], options); The output is below  
  output = iterations: 1 constrviolation: 0 algorithm: 'active-set' message: [1x96 characters] firstorderopt: 1.1861e + 21 SIGNIGATION: [] exitflag = -3  

I do not understand why the problem is infinite I can only type in H , f , AEEC , beac , and lb entered references; Support Vector Network written by Corina Cortes and Vladimir Vapnik. Is there any way to fix this problem?


Comments