svtol.m
上传用户:xfjled
上传日期:2007-05-06
资源大小:150k
文件大小:0k
源码类别:

matlab例程

开发平台:

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