float (version 0.2-3)

is.float: is.float

Description

Tests if argument is a float matrix.

Usage

is.float(x)

Arguments

x

An R object.

Value

A logical value.

Details

is.float() and is.float() are different names for the same function.

Examples

Run this code
# NOT RUN {
library(float)

x = matrix(0, 5, 5)
s = flrunif(10, 3)
is.float(x)
is.float(s)

# }

Run the code above in your browser using DataCamp Workspace