?? nobias.m
字號(hào):
function nb = nobias(ker)%NOBIAS returns true if SVM kernel has no implicit bias%% Usage: nb = nobias(ker)%% Parameters: ker - kernel type% % Author: Steve Gunn (srg@ecs.soton.ac.uk) if (nargin ~= 1) % check correct number of arguments help nobias else switch lower(ker) case {'linear','sigmoid'}%,'anovaspline1','anovaspline2','anovaspline3'}選擇上述兩個(gè)核函數(shù)nb=1否則nb=0 nb = 1; otherwise nb = 0; end end
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -