permutations (version 1.0-0)

c: Concatenation of permutations

Description

Concatenate words or cycles together

Usage

"c"(...) "c"(...) "rep"(x, ...)

Arguments

...
In the methods for c(), objects to be concatenated. Must all be of the same type: either all word, or all cycle
x
In the method for rep(), a permutation object

See Also

size

Examples

Run this code
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)



Run the code above in your browser using DataCamp Workspace