transitiveClosure {parsec}R Documentation

Transitive Closure

Description

The function computes the transitive closure of a reflexive and antisymmetric binary relation.

Usage

transitiveClosure(m)

Arguments

m

a generic square boolean matrix representing a reflexive and antisymmetric binary relation, an object of class cover or an object of class incidence.

Value

Incidence matrix of the transitive closure of the input matrix m.

See Also

is.partialorder

Examples

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)

[Package parsec version 1.2.7 Index]