recycle2: variation of recycle that recycles one vector x or y to the...

Description Usage Arguments Value Examples

Description

variation of recycle that recycles one vector x or y to the length of the longer one

Usage

1
recycle2(x, y, na.fill=FALSE)

Arguments

x

vector to be recycled if shorter than y

y

vector to be recycled if shorter than x

na.fill

Use NAs for filling up to given length (default=FALSE)

Value

list a list containing the recycled x vector as first and the recycled y vector as second element

Examples

1
2
3
4
recycle2(1:10, 1:3)
recycle2(1, 1:5)
recycle2(1, 1:5, na.fill=TRUE)
recycle2(1:5, 5:1)    # vectors unchanged

OpenRepGrid documentation built on May 2, 2019, 4:54 p.m.