Description Usage Arguments Details Value See Also Examples
Checks whether a simplex is a face of another simplex and is in the complex.
1 |
st |
a simplex tree. |
tau |
a simplex which may contain |
sigma |
a simplex which may contain |
A simplex τ is a face of σ if τ \subset σ. This function
checks whether that is true. tau
and sigma
are sorted before comparison.
boolean indicating whether tau
is a face of sigma
.
1 2 3 4 | st <- simplex_tree()
st %>% insert(1:3)
st %>% is_face(2:3, 1:3)
st %>% is_face(1:3, 2:3)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.