annotate toolboxes/FullBNT-1.0.7/bnt/CPDs/@root_CPD/log_marg_prob_node.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 L = log_marg_prob_node(CPD, self_ev, pev)
|
wolffd@0
|
2 % LOG_MARG_PROB_NODE Compute prod_m log int_{theta_i} P(x(i,m)| x(pi_i,m), theta_i) for node i (root)
|
wolffd@0
|
3 % L = log_marg_prob_node(CPD, self_ev, pev)
|
wolffd@0
|
4 %
|
wolffd@0
|
5 % self_ev{m} is the evidence on this node in case m
|
wolffd@0
|
6 % pev{i,m} is the evidence on the i'th parent in case m (ignored)
|
wolffd@0
|
7 % We always return L = 0.
|
wolffd@0
|
8
|
wolffd@0
|
9 L = 0;
|