rep {float} | R Documentation |
rep
Description
Replicate elements of a float vector/matrix.
Usage
## S3 method for class 'float32'
rep(x, ...)
Arguments
x |
A float matrix. |
... |
Additional arguments (passed to |
Value
A float vector.
Examples
library(float)
x = fl(matrix(1:6, 3, 2))
rep(x, 5)
[Package float version 0.3-2 Index]