float (version 0.2-4)

dims: dim

Description

Dimension information for a float vector/matrix.

Usage

# S4 method for float32
nrow(x)

# S4 method for float32 ncol(x)

# S4 method for float32 NROW(x)

# S4 method for float32 NCOL(x)

# S4 method for float32 dim(x)

# S4 method for float32 length(x)

# S4 method for float32 dim(x) <- value

Arguments

x

A float vector/matrix.

value

The right hand side for the "setter" (dim<-).

Value

The requested integer values.

Examples

Run this code
# NOT RUN {
library(float)

s = flrunif(10, 3)
dim(s)
nrow(s)
ncol(s)

# }

Run the code above in your browser using DataCamp Workspace