Mercurial > hg > camir-aes2014
annotate toolboxes/FullBNT-1.0.7/netlab3.3/gtmlmean.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 means = gtmlmean(net, data) |
wolffd@0 | 2 %GTMLMEAN Mean responsibility for data in a GTM. |
wolffd@0 | 3 % |
wolffd@0 | 4 % Description |
wolffd@0 | 5 % MEANS = GTMLMEAN(NET, DATA) takes a GTM structure NET, and computes |
wolffd@0 | 6 % the means of the responsibility distributions for each data point in |
wolffd@0 | 7 % DATA. |
wolffd@0 | 8 % |
wolffd@0 | 9 % See also |
wolffd@0 | 10 % GTM, GTMPOST, GTMLMODE |
wolffd@0 | 11 % |
wolffd@0 | 12 |
wolffd@0 | 13 % Copyright (c) Ian T Nabney (1996-2001) |
wolffd@0 | 14 |
wolffd@0 | 15 % Check for consistency |
wolffd@0 | 16 errstring = consist(net, 'gtm', data); |
wolffd@0 | 17 if ~isempty(errstring) |
wolffd@0 | 18 error(errstring); |
wolffd@0 | 19 end |
wolffd@0 | 20 |
wolffd@0 | 21 R = gtmpost(net, data); |
wolffd@0 | 22 means = R*net.X; |