doubleMatrix {xcms} | R Documentation |
Allocate double, integer, or logical matricies in one step without copying memory around.
doubleMatrix(nrow = 0, ncol = 0) integerMatrix(nrow = 0, ncol = 0) logicalMatrix(nrow = 0, ncol = 0)
nrow |
number of matrix rows |
ncol |
number of matrix columns |
Matrix of double, integer, or logical values. Memory is not zeroed.
Colin A. Smith, csmith@scripps.edu