fm_segm_list {fmesher} | R Documentation |
Methods for fm_segm lists
Description
fm_segm
lists can be combined into fm_segm_list
list objects.
Usage
## S3 method for class 'fm_segm'
c(...)
## S3 method for class 'fm_segm_list'
c(...)
## S3 method for class 'fm_segm_list'
x[i]
Arguments
... |
Objects to be combined. |
x |
|
i |
indices specifying elements to extract |
Value
A fm_segm_list
object
Methods (by generic)
-
c(fm_segm_list)
: The...
arguments should be coercible tofm_segm_list
objects. -
[
: Extract sub-list
Functions
-
c(fm_segm)
: The...
arguments should befm_segm
objects, or coercible withfm_as_segm_list(list(...))
.
See Also
Examples
m <- c(A = fm_segm(1:2), B = fm_segm(3:4))
str(m)
str(m[2])
[Package fmesher version 0.1.7 Index]