svtol.m
上传用户:liu_jing
上传日期:2013-07-02
资源大小:4k
文件大小:0k
开发平台:

Matlab

  1. function tol = svtol(C)
  2. %SVTOL Tolerance for Support Vectors
  3. %
  4. %  Usage: tol = svtol(C)
  5. %
  6. %  Parameters: C      - upper bound 
  7. %
  8. %  Author: Steve Gunn (srg@ecs.soton.ac.uk)
  9.   if (nargin ~= 1) % check correct number of arguments
  10.     help svtol
  11.   else
  12.     % tolerance for Support Vector Detection
  13.     if C==Inf 
  14.       tol = 1e-5;
  15.     else
  16.       tol = C*1e-6;
  17.     end
  18.     
  19.   end