about summary refs log tree commit diff
path: root/sourcecodes/bnt-master/netlab3.3/gtmfwd.m
blob: bb84d34477bd0998e5ded7b85522a8043cf5df09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
function mix = gtmfwd(net)
%GTMFWD	Forward propagation through GTM.
%
%	Description
%	 MIX = GTMFWD(NET) takes a GTM structure NET, and forward propagates
%	the latent data sample NET.X through the GTM to generate the
%	structure MIX which represents the Gaussian mixture model in data
%	space.
%
%	See also
%	GTM
%

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

net.gmmnet.centres = rbffwd(net.rbfnet, net.X);
mix = net.gmmnet;