allocMatrix {matrixStats} | R Documentation |
Allocates an empty vector, matrix or array
Description
Allocates an empty vector, matrix or array faster than the corresponding function in R.
Usage
allocMatrix(nrow, ncol, value = 0, ...)
allocVector(length, value = 0, ...)
allocArray(dim, value = 0, ...)
Arguments
value |
A |
length , nrow , ncol , dim |
|
Value
Returns a vector
, matrix
and
array
respectively of the same data type as
value
.
Author(s)
Henrik Bengtsson
See Also
See also vector
, matrix
and
array
.
[Package matrixStats version 1.5.0 Index]