antisymmetry {parsec} | R Documentation |
The function checks whether boolean square matrix m
represents an antisymmetric binary relation.
antisymmetry(m)
m |
a square matrix. |
transitivity
, binary
, reflexivity
,
validate.partialorder.incidence
M <- c(TRUE, FALSE, FALSE, FALSE, TRUE, TRUE, FALSE, FALSE, TRUE, FALSE, TRUE,
FALSE, TRUE, TRUE, TRUE, TRUE)
M <- matrix(M, 4, 4)
rownames(M) <- colnames(M) <- LETTERS[1:4]
antisymmetry(M)