float (version 0.3-2)

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)

Value

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

Arguments

...

vectors or matrices (numeric or float)

deparse.level

ignored

Examples

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

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

Run the code above in your browser using DataLab