is.float {float} | R Documentation |
Tests if argument is a float matrix.
is.float(x)
x |
An R object. |
is.float()
and is.float()
are different names for the same
function.
A logical value.
library(float) x = matrix(0, 5, 5) s = flrunif(10, 3) is.float(x) is.float(s)