Mercurial > hg > camir-ismir2012
comparison toolboxes/FullBNT-1.0.7/bnt/CPDs/@tabular_kernel/convert_to_table.m @ 0:cc4b1211e677 tip
initial commit to HG from
Changeset:
646 (e263d8a21543) added further path and more save "camirversion.m"
author | Daniel Wolff |
---|---|
date | Fri, 19 Aug 2016 13:07:06 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:cc4b1211e677 |
---|---|
1 function T = convert_to_table(CPD, domain, evidence) | |
2 % CONVERT_TO_TABLE Convert a discrete CPD to a table | |
3 % T = convert_to_table(CPD, domain, evidence) | |
4 % | |
5 % We convert the CPD to a CPT, and then lookup the evidence on the discrete parents. | |
6 % The resulting table can easily be converted to a potential. | |
7 | |
8 CPT = CPD.table; | |
9 odom = domain(~isemptycell(evidence(domain))); | |
10 vals = cat(1, evidence{odom}); | |
11 map = find_equiv_posns(odom, domain); | |
12 index = mk_multi_index(length(domain), map, vals); | |
13 T = CPT(index{:}); |