is.whole | R Documentation |
Check which elements of x[]
are integer valued aka
“whole” numbers,including MPFR
numbers (class mpfr
).
## S3 method for class 'mpfr'
is.whole(x)
x |
any R vector, here of |
logical vector of the same length as x
, indicating where
x[.]
is integer valued.
Martin Maechler
is.integer(x)
(base package) checks for the
internal mode or class, not if x[i]
are integer valued.
The is.whole()
methods in package gmp.
is.integer(3) # FALSE, it's internally a double
is.whole(3) # TRUE
x <- c(as(2,"mpfr") ^ 100, 3, 3.2, 1000000, 2^40)
is.whole(x) # one FALSE, only
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.