sVIM | R Documentation |
Calculate the signed vertex incidence matrix.
sVIM(E_List)
E_List |
Edge list formatted | n1 | n2 | weight |. |
Intended as internal function.
Return a signed, m by n, vertex incidence matrix, B
.
Alexander Mercier
E_List = matrix(c(1,1,2,2,3,3,1,1,1), 3, 3) colnames(E_List) <- c("n1", "n2", "weight") B = sVIM(E_List)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.