is.shared {bigmemory} | R Documentation |
Check to see if a big.matrix
is in shared memory.
is.shared(x)
x |
a big.matrix . |
TRUE
if a big.matrix
is in shared memory, and FALSE
otherwise.
John W. Emerson and Michael J. Kane
x <- big.matrix(10, 2, init=-5) colnames(x)=c("alpha", "beta") is.big.matrix(x) is.shared(x) ## Not run: z <- shared.big.matrix(7, 3, type='integer', init=3) is.big.matrix(z) is.shared(z) ## End(Not run)