comparison toolboxes/FullBNT-1.0.7/graph/test.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 % A - B
2 % |
3 % D - C - E
4
5 A=1;B=2;C=3;D=4;E=5;
6 dag = zeros(5,5);
7 dag(A,B)=1;
8 %dag(A,D)=1;
9 dag(B,C)=1;
10 dag(C,D)=1;
11 dag(E,C)=1;
12 [d, pre, post, cycle, f, pred] = dfs(dag, A, 0)
13
14 [T, pre, post, cycle] = mk_rooted_tree(dag, A)
15
16 %[T, pre, post, cycle] = mkRootedTree(dag, A)