Daniel@0: function mix = gtmfwd(net) Daniel@0: %GTMFWD Forward propagation through GTM. Daniel@0: % Daniel@0: % Description Daniel@0: % MIX = GTMFWD(NET) takes a GTM structure NET, and forward propagates Daniel@0: % the latent data sample NET.X through the GTM to generate the Daniel@0: % structure MIX which represents the Gaussian mixture model in data Daniel@0: % space. Daniel@0: % Daniel@0: % See also Daniel@0: % GTM Daniel@0: % Daniel@0: Daniel@0: % Copyright (c) Ian T Nabney (1996-2001) Daniel@0: Daniel@0: net.gmmnet.centres = rbffwd(net.rbfnet, net.X); Daniel@0: mix = net.gmmnet;