c
From permutations v1.0-5
by Robin K S Hankin
Concatenation of permutations
Concatenate words or cycles together
Usage
# S3 method for word
c(...)
# S3 method for cycle
c(...)
# S3 method for permutation
rep(x, ...)
Arguments
- …
In the methods for
c()
, objects to be concatenated. Must all be of the same type: either allword
, or allcycle
- x
In the method for
rep()
, a permutation object
Note
The methods for c()
do not attempt to detect which type (word or
cycle) you want as conversion is expensive.
Function rep.permutation()
behaves like base::rep()
and
takes the same arguments, eg times
and each
.
See Also
Examples
# NOT RUN {
x <- as.cycle(1:5)
y <- cycle(list(list(1:4,8:9),list(1:2)))
# concatenate cycles:
c(x,y)
# concatenate words:
c(rperm(5,3),rperm(6,9)) # size adjusted to maximum size of args
# repeat words:
rep(x, times=3)
# }
Community examples
Looks like there are no examples yet.