mathis {float} | R Documentation |
Finite, infinite, and NaNs.
## S4 method for signature 'float32' is.finite(x) ## S4 method for signature 'float32' is.infinite(x) ## S4 method for signature 'float32' is.nan(x)
x |
A float vector/matrix. |
An integer vector/matrix of the same dimensions as the input.
## Not run: library(float) x = flrnorm(10) is.nan(sqrt(x)) ## End(Not run)