bcmpak.m

来自「The Bayesian Committee Machine (BCM) is 」· M 代码 · 共 29 行

M
29
字号
function w = bcmpak(net)% bcmpak - Combine kernel parameters of BCM into vector%% Synopsis:%   w = bcmpak(net)%   % Arguments:%   net: BCM structure%   % Returns:%   w: Vector of GP parameters taken from field net.gpnet%   % Description:%   This routine is only meant to be used as a subroutine of%   bcmtrain.m. The routine returns the GP parameters taken from%   net.gpnet, which are assumed to be equal to all of the BCM's module%   parameters.%   %   % See also: bcm,bcmtrain,bcmunpak% % Author(s): Anton Schwaighofer, Nov 2004% $Id: bcmpak.m,v 1.1 2004/11/18 21:20:47 anton Exp $error(nargchk(1, 1, nargin));error(consist(net, 'bcm'));w = gppak(net.gpnet);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?