Mercurial > hg > camir-aes2014
annotate toolboxes/FullBNT-1.0.7/netlab3.3/gtmfwd.m @ 0:e9a9cd732c1e tip
first hg version after svn
author | wolffd |
---|---|
date | Tue, 10 Feb 2015 15:05:51 +0000 |
parents | |
children |
rev | line source |
---|---|
wolffd@0 | 1 function mix = gtmfwd(net) |
wolffd@0 | 2 %GTMFWD Forward propagation through GTM. |
wolffd@0 | 3 % |
wolffd@0 | 4 % Description |
wolffd@0 | 5 % MIX = GTMFWD(NET) takes a GTM structure NET, and forward propagates |
wolffd@0 | 6 % the latent data sample NET.X through the GTM to generate the |
wolffd@0 | 7 % structure MIX which represents the Gaussian mixture model in data |
wolffd@0 | 8 % space. |
wolffd@0 | 9 % |
wolffd@0 | 10 % See also |
wolffd@0 | 11 % GTM |
wolffd@0 | 12 % |
wolffd@0 | 13 |
wolffd@0 | 14 % Copyright (c) Ian T Nabney (1996-2001) |
wolffd@0 | 15 |
wolffd@0 | 16 net.gmmnet.centres = rbffwd(net.rbfnet, net.X); |
wolffd@0 | 17 mix = net.gmmnet; |