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

matlab例程

开发平台:

Matlab

  1. function nb = nobias(ker)
  2. %NOBIAS returns true if SVM kernel has no implicit bias
  3. %
  4. %  Usage: nb = nobias(ker)
  5. %
  6. %  Parameters: ker - kernel type
  7. %              
  8. %  Author: Steve Gunn (srg@ecs.soton.ac.uk)
  9.   if (nargin ~= 1) % check correct number of arguments
  10.      help nobias
  11.   else
  12.      
  13.     switch lower(ker)
  14.       case {'linear','sigmoid'}
  15. %,'anovaspline1','anovaspline2','anovaspline3'}
  16.         nb = 1;
  17.       otherwise
  18.         nb = 0;
  19.     end
  20.   end