Sptree {DASC} | R Documentation |
Get Spanning tree from adjacency matrix
Sptree(ADJ)
ADJ |
the adjacency matrix of the factor |
ADJ
the spaning tree of the adjacency matrix
Haidong Yi, Ayush T. Raman
W <- matrix(c(0,1,1,1,1,0,1,1,1,1,0,1,1,1,1,0), nrow=4) Sptree(W)