Find index positions in interval of search values
indexFindInterval(obj, low = NULL, high = NULL, low.include = TRUE, high.include = TRUE, low.exact = FALSE, high.exact = FALSE, lowFUN = FUN, highFUN = FUN, FUN = indexFind)
an object of class ‘index’
low search value
high search value
FALSE to not include the lower search value (default TRUE)
FALSE to not include the upper search value (default TRUE)
TRUE to require the the low search value is present (default FALSE)
TRUE to require the the upper search value is present (default FALSE)
low level search function to identify lower index position (default FUN
)
low level search function to identify lower index position (default FUN
)
low level search function to identify both index positions (default indexFind
)
An integer sequence of index positions
indexFindInterval |
finding a sequence of exact or approximate values |