Mercurial > hg > camir-aes2014
comparison toolboxes/FullBNT-1.0.7/bnt/installC_BNT.m @ 0:e9a9cd732c1e tip
first hg version after svn
author | wolffd |
---|---|
date | Tue, 10 Feb 2015 15:05:51 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:e9a9cd732c1e |
---|---|
1 BNT_HOME = '/home/ai2/murphyk/matlab/FullBNT'; % edit this | |
2 | |
3 d = fullfile(BNT_HOME, 'BNT'); | |
4 %PC = (strncmp(computer,'PC',2)); | |
5 | |
6 cd(sprintf('%s/potentials/Tables', d)) | |
7 mex marg_table.c % used by @dpot/marginalize_pot.m | |
8 mex marg_sparse_table.c %used by sparse jtree | |
9 mex mult_by_table.c | |
10 mex mult_by_sparse_table.c | |
11 mex divide_by_table.c | |
12 mex divide_by_sparse_table.c | |
13 mex rep_mult.c | |
14 | |
15 % Written by Wei Hu | |
16 cd(sprintf('%s/CPDs/@discrete_CPD', d)) | |
17 mex convert_to_sparse_table.c | |
18 | |
19 % Written by Wei Hu | |
20 cd(sprintf('%s/inference/static/@jtree_sparse_inf_engine', d)) | |
21 mex init_pot.c | |
22 mex collect_evidence.c | |
23 mex distribute_evidence.c | |
24 | |
25 % written by Bhaskara Marthi | |
26 cd(sprintf('%s/inference/static/@gibbs_sampling_inf_engine/private', d)) | |
27 mex compute_posterior.c | |
28 mex get_slice_dbn.c | |
29 mex sample_single_discrete.c | |
30 | |
31 | |
32 |