Computing edge probabilities using Kirshner (07) formula

Kirshner(W)

Arguments

W

Squared weight matrix

Value

Edges probabilities as defined in Kirshner 2007

Examples

W = matrix(c(1,1,3,1,1,1,3,1,1),3,3,byrow=TRUE) Kirshner(W)
#> [,1] [,2] [,3] #> [1,] 0.0000000 0.5714286 0.8571429 #> [2,] 0.5714286 0.0000000 0.5714286 #> [3,] 0.8571429 0.5714286 0.0000000