powered by
The function computes the transitive closure of a reflexive and antisymmetric binary relation.
transitiveClosure(m)
Incidence matrix of the transitive closure of the input matrix m.
m
a generic square boolean matrix representing a reflexive and antisymmetric binary relation, an object of class cover or an object of class incidence.
cover
incidence
is.partialorder
m <- c(1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 1, 1, 0, 1) m <- matrix(m, 4, 4) transitiveClosure(m)
Run the code above in your browser using DataLab