about summary refs log tree commit diff
path: root/sourcecodes/bnt-master/BNT/CPDs/@root_CPD/CPD_to_pi.m
blob: 65f4eb5e3dabe6461ebf3ac7743aedff403a750f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
function pi = CPD_to_pi(CPD, msg_type, n, ps, msg, evidence)
% CPD_TO_PI Compute the pi vector (root)
% function pi = CPD_to_pi(CPD, msg_type, n, ps, msg, evidence)

self_ev = evidence{n};
switch msg_type
 case 'd',
  error('root_CPD can''t create discrete msgs')
 case 'g',
  pi.mu = self_ev;
  pi.Sigma = zeros(size(self_ev));
end