Mercurial > hg > mauch-mirex-2010
annotate _FullBNT/BNT/potentials/CPD_to_pot.m @ 9:4ea6619cb3f5 tip
removed log files
author | matthiasm |
---|---|
date | Fri, 11 Apr 2014 15:55:11 +0100 |
parents | b5b38998ef3b |
children |
rev | line source |
---|---|
matthiasm@8 | 1 function pot = CPD_to_pot(pot_type, CPD, domain, ns, cnodes, evidence) |
matthiasm@8 | 2 % CPD_TO_POT Convert a CPD to a potential of the specified form, incorporating any evidence |
matthiasm@8 | 3 % pot = CPD_to_pot(pot_type, CPD, domain, node_sizes, cnodes, evidence) |
matthiasm@8 | 4 % |
matthiasm@8 | 5 % pot_type is one of 'd', 'g', or 'cg'. |
matthiasm@8 | 6 % domain is the domain of CPD. |
matthiasm@8 | 7 % node_sizes(i) is the size of node i. |
matthiasm@8 | 8 % cnodes = the cts nodes |
matthiasm@8 | 9 % evidence{i} is the evidence on the i'th node. |
matthiasm@8 | 10 |
matthiasm@8 | 11 switch pot_type |
matthiasm@8 | 12 case 'd', |
matthiasm@8 | 13 pot = CPD_to_dpot(CPD, domain, ns, cnodes, evidence); |
matthiasm@8 | 14 case 'g', |
matthiasm@8 | 15 pot = CPD_to_cpot(CPD, domain, ns, cnodes, evidence); |
matthiasm@8 | 16 case 'cg', |
matthiasm@8 | 17 pot = CPD_to_cgpot(CPD, domain, ns, cnodes, evidence); |
matthiasm@8 | 18 otherwise, |
matthiasm@8 | 19 error(['can''t handle pot_type ' pot_type]); |
matthiasm@8 | 20 end |
matthiasm@8 | 21 |