sVIM {simplifyNet} | R Documentation |
Signed vertex incidence matrix
Description
Calculate the signed vertex incidence matrix.
Usage
sVIM(E_List)
Arguments
E_List |
Edge list formatted | n1 | n2 | weight |. |
Details
Intended as internal function.
Value
Return a signed, m by n, vertex incidence matrix, B
.
Author(s)
Alexander Mercier
Examples
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)
[Package simplifyNet version 0.0.1 Index]