Mercurial > hg > camir-ismir2012
annotate toolboxes/FullBNT-1.0.7/bnt/installC_BNT.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 |
rev | line source |
---|---|
Daniel@0 | 1 BNT_HOME = '/home/ai2/murphyk/matlab/FullBNT'; % edit this |
Daniel@0 | 2 |
Daniel@0 | 3 d = fullfile(BNT_HOME, 'BNT'); |
Daniel@0 | 4 %PC = (strncmp(computer,'PC',2)); |
Daniel@0 | 5 |
Daniel@0 | 6 cd(sprintf('%s/potentials/Tables', d)) |
Daniel@0 | 7 mex marg_table.c % used by @dpot/marginalize_pot.m |
Daniel@0 | 8 mex marg_sparse_table.c %used by sparse jtree |
Daniel@0 | 9 mex mult_by_table.c |
Daniel@0 | 10 mex mult_by_sparse_table.c |
Daniel@0 | 11 mex divide_by_table.c |
Daniel@0 | 12 mex divide_by_sparse_table.c |
Daniel@0 | 13 mex rep_mult.c |
Daniel@0 | 14 |
Daniel@0 | 15 % Written by Wei Hu |
Daniel@0 | 16 cd(sprintf('%s/CPDs/@discrete_CPD', d)) |
Daniel@0 | 17 mex convert_to_sparse_table.c |
Daniel@0 | 18 |
Daniel@0 | 19 % Written by Wei Hu |
Daniel@0 | 20 cd(sprintf('%s/inference/static/@jtree_sparse_inf_engine', d)) |
Daniel@0 | 21 mex init_pot.c |
Daniel@0 | 22 mex collect_evidence.c |
Daniel@0 | 23 mex distribute_evidence.c |
Daniel@0 | 24 |
Daniel@0 | 25 % written by Bhaskara Marthi |
Daniel@0 | 26 cd(sprintf('%s/inference/static/@gibbs_sampling_inf_engine/private', d)) |
Daniel@0 | 27 mex compute_posterior.c |
Daniel@0 | 28 mex get_slice_dbn.c |
Daniel@0 | 29 mex sample_single_discrete.c |
Daniel@0 | 30 |
Daniel@0 | 31 |
Daniel@0 | 32 |