about summary refs log tree commit diff
path: root/sourcecodes/bnt-master/BNT/examples/static/StructLearn/pc1.m
blob: a6fbb9bd73404132c02cfc79c0ab12009d0ef9f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
% SGS p118
% Try learning the structure using an oracle for the cond indep tests

n = 5;

A = 1; B = 2; C = 3; D = 4; E = 5;

G = zeros(n);
G(A,B)=1;
G(B,[C D]) = 1;
G(C,E)=1;
G(D,E)=1;

k = 2;

pdag = learn_struct_pdag_pc('dsep', n, k, G)




if 0
N = 4; 
dag = zeros(N,N);
C = 1; S = 2; R = 3; W = 4;
dag(C,[R S]) = 1;
dag(R,W) = 1;
dag(S,W)=1;

pdag = learn_struct_pdag_pc('dsep', N, 2, dag)
end