is.float {float} | R Documentation |
is.float
Description
Tests if argument is a float matrix.
Usage
is.float(x)
Arguments
x |
An R object. |
Details
is.float()
and is.float()
are different names for the same
function.
Value
A logical value.
Examples
library(float)
x = matrix(0, 5, 5)
s = flrunif(10, 3)
is.float(x)
is.float(s)
[Package float version 0.3-2 Index]