float (version 0.2-3)

bind: rbind

Description

rbind() and cbind() for floats.

Usage

# S3 method for float32
rbind(..., deparse.level = 1)

# S3 method for float32 cbind(..., deparse.level = 1)

Arguments

...

vectors or matrices (numeric or float)

deparse.level

ignored

Value

A matrix of the same type as the highest precision input.

Examples

Run this code
# NOT RUN {
library(float)
x = fl(matrix(1:10, 5))

rbind(x, x)
cbind(x, x)

# }

Run the code above in your browser using DataCamp Workspace