mathis {float} | R Documentation |
Finite, infinite, and NaNs
Description
Finite, infinite, and NaNs.
Usage
## S4 method for signature 'float32'
is.finite(x)
## S4 method for signature 'float32'
is.infinite(x)
## S4 method for signature 'float32'
is.nan(x)
Arguments
x |
A float vector/matrix. |
Value
An integer vector/matrix of the same dimensions as the input.
Examples
## Not run:
library(float)
x = flrnorm(10)
is.nan(sqrt(x))
## End(Not run)
[Package float version 0.3-2 Index]