?? rbf.m
字號:
function ker = rbf(arg)
if nargin == 0
% this is the default constructor
ker.gamma = 1;
ker = class(ker, 'rbf');
elseif isa(arg, 'rbf');
% this is the copy constructor
net = arg;
elseif nargin == 1
if prod(size(arg)) ~= 1
error('gamma must be a scalar');
end
ker.gamma = arg;
ker = class(ker, 'rbf');
else
% there are no other constructors
help rbf
end
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -