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