incseq {klin} | R Documentation |
Given two numbers a
and b
, returns a:b
if
a<=b
, otherwise numeric(0)
.
incseq(a,b)
a |
lower endpoint, an integer |
b |
upper endpoint, an integer |
If a<=b
, a:b
, otherwise numeric(0)
.
The function does not check whether a
and b
are
indeed integers.
Tamas K Papp <tpapp@princeton.edu>