bind {float} | R Documentation |
rbind
Description
rbind()
and cbind()
for floats.
Usage
## S3 method for class 'float32'
rbind(..., deparse.level = 1)
## S3 method for class '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
library(float)
x = fl(matrix(1:10, 5))
rbind(x, x)
cbind(x, x)
[Package float version 0.3-2 Index]