Mercurial > hg > camir-aes2014
comparison toolboxes/FullBNT-1.0.7/bnt/uninstallC_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 dirs = {'potentials/Tables', ... | |
2 'CPDs/@discrete_CPD', ... | |
3 'inference/static/@jtree_sparse_inf_engine', ... | |
4 'inference/static/@gibbs_sampling_inf_engine/private'}; | |
5 | |
6 BNT_HOME = '/home/ai2/murphyk/matlab/FullBNT'; % edit this | |
7 %global BNT_HOME | |
8 | |
9 for d=1:length(dirs) | |
10 f = fullfile(BNT_HOME, 'BNT', dirs{d}); | |
11 fprintf('removing Cmex files from %s\n', f); | |
12 cd(f) | |
13 delete *.mex* | |
14 delete *.dll | |
15 delete *.obj | |
16 delete *.o | |
17 end |