Displaying 1 result from an estimated 1 matches for "1e7l".
Did you mean:
17l
2009 Dec 28
2
seq.int broken (seq as well) (PR#14169)
...indows XP
Submission from: (NULL) (156.109.18.2)
# fine as expected from help page:
# "from+by, ..., up to the sequence value less than or equal to to"
# thus 1+10=11 is not in
> seq.int(1L, 10L, by=10L)
[1] 1
# of course 1+1e7 should also not be in
# but is: wrong
> seq.int(1L, 1e7L, by=1e7L)
[1] 1e+00 1e+07
# since we use seq.int AND are within integer range, rounding should not be an
issue
> version
_
platform i386-pc-mingw32
arch i386
os mingw32...