about summary refs log tree commit diff
path: root/sourcecodes/bnt-master/netlab3.3/rbfpak.m
blob: a482f99b7aded12395754d12145484ed87775a3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
function w = rbfpak(net)
%RBFPAK	Combines all the parameters in an RBF network into one weights vector.
%
%	Description
%	W = RBFPAK(NET) takes a network data structure NET and combines the
%	component parameter matrices into a single row vector W.
%
%	See also
%	RBFUNPAK, RBF
%

%	Copyright (c) Ian T Nabney (1996-2001)

errstring = consist(net, 'rbf');
if ~errstring
  error(errstring);
end

w = [net.c(:)', net.wi, net.w2(:)', net.b2];