gen.downset {parsec} | R Documentation |
Antichain generating a given downset
Description
The function returns the antichain generating the input downset Q
, given the incidence matrix z
of the poset.
Usage
gen.downset(z, Q = 1)
Arguments
z |
an incidence matrix. |
Q |
a vector ( |
Value
A boolean
vector.
See Also
Examples
lv <- c(2, 3, 2)
prof <- var2prof(varlen = lv)
z <- getzeta(prof)
down <- c("111", "211", "112", "212")
gen <- gen.downset(z, down)
plot(z, lwd = 1 + (rownames(prof$profiles)%in%down), col = 1 + gen,
sub = "bold = the downset, red = the antichain generating the downset")
[Package parsec version 1.2.7 Index]