The function takes two vectors (of type integer) of equal length. For each entry pair (p,q) the returned vector contains p:q. Therefore c(a, b, c) and c(x, y, z) produces c(a:x, b:y, c:z).
multSeq(beg, end)
numeric
. Vector of start positions.
numeric
. Vector of end positions.
Integer vector
# NOT RUN {
# MultSeq
multSeq(c(1, 4, 7), c(2, 5, 8))
# }
Run the code above in your browser using DataLab