is.overlap {NetWeaver} | R Documentation |
Test if two regions are overlapping.
is.overlap(x,y)
x |
a vector of two numeric values specifying the start and end positions of the first region. |
y |
a vector of two numeric values specifying the start and end positions of the second region |
Logic test output.
Minghui Wang <m.h.wang@live.com>
is.overlap(c(10,100),c(90,120))
is.overlap(c(10,100),c(110,120))