?? gppak.m
字號:
function hp = gppak(net)%GPPAK Combines GP hyperparameters into one vector.%% Description% HP = GPPAK(NET) takes a Gaussian Process data structure NET and% combines the hyperparameters into a single row vector HP.%% See also% GP, GPUNPAK, GPFWD, GPERR, GPGRAD%% Copyright (c) Ian T Nabney (1996-2001)% Check arguments for consistencyerrstring = consist(net, 'gp');if ~isempty(errstring); error(errstring);endhp = [net.bias, net.noise, net.inweights, net.fpar];
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -