coverMatrix {POSetR} | R Documentation |
Poset cover matrix
Description
The function returns the cover matrix for objects of class poset
.
Usage
coverMatrix(x)
Arguments
x |
an object of class |
Value
a logical square matrix.
Examples
dom <- matrix(c(
"a", "b",
"c", "b",
"b", "d"
), ncol = 2, byrow = TRUE)
p <- poset(x = dom)
coverMatrix(p)
[Package POSetR version 1.1.4 Index]