annotate toolboxes/FullBNT-1.0.7/graph/test.m @ 0:e9a9cd732c1e tip

first hg version after svn
author wolffd
date Tue, 10 Feb 2015 15:05:51 +0000
parents
children
rev   line source
wolffd@0 1 % A - B
wolffd@0 2 % |
wolffd@0 3 % D - C - E
wolffd@0 4
wolffd@0 5 A=1;B=2;C=3;D=4;E=5;
wolffd@0 6 dag = zeros(5,5);
wolffd@0 7 dag(A,B)=1;
wolffd@0 8 %dag(A,D)=1;
wolffd@0 9 dag(B,C)=1;
wolffd@0 10 dag(C,D)=1;
wolffd@0 11 dag(E,C)=1;
wolffd@0 12 [d, pre, post, cycle, f, pred] = dfs(dag, A, 0)
wolffd@0 13
wolffd@0 14 [T, pre, post, cycle] = mk_rooted_tree(dag, A)
wolffd@0 15
wolffd@0 16 %[T, pre, post, cycle] = mkRootedTree(dag, A)