powered by
The function checks whether the input boolean square matrix m represents a partial order.
m
is.partialorder(m)
a boolean square matrix..
transitivity, binary, reflexivity,
transitivity
binary
reflexivity
antisymmetry, is.preorder,
antisymmetry
is.preorder
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] is.partialorder(M)
Run the code above in your browser using DataLab