annotate toolboxes/FullBNT-1.0.7/bnt/CPDs/@gaussian_CPD/convert_CPD_to_table_hidden_ps.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 T = convert_CPD_to_table_hidden_ps(CPD, self_val)
wolffd@0 2 % CONVERT_CPD_TO_TABLE_HIDDEN_PS Convert a Gaussian CPD to a table
wolffd@0 3 % function T = convert_CPD_to_table_hidden_ps(CPD, self_val)
wolffd@0 4 %
wolffd@0 5 % self_val must be a non-empty vector.
wolffd@0 6 % All the parents are hidden.
wolffd@0 7 %
wolffd@0 8 % This is used by misc/convert_dbn_CPDs_to_tables
wolffd@0 9
wolffd@0 10 m = CPD.mean;
wolffd@0 11 C = CPD.cov;
wolffd@0 12 W = CPD.weights;
wolffd@0 13
wolffd@0 14 [ssz dpsize] = size(m);
wolffd@0 15
wolffd@0 16 T = zeros(dpsize, 1);
wolffd@0 17 for i=1:dpsize
wolffd@0 18 T(i) = gaussian_prob(self_val, m(:,i), C(:,:,i));
wolffd@0 19 end
wolffd@0 20