| binary | R Documentation |
The function checks whether square matrix m represents a binary relation.
binary(m)
m |
a square matrix. |
transitivity, reflexivity,
antisymmetry, is.preorder,
is.partialorder, 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]
binary(M)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.