remoteLs {bigGP} | R Documentation |
Remote List Objects
Description
remoteLs
returns the names of the objects in the global environment
on each slave process, as a list of character vectors.
Usage
remoteLs(all.names = FALSE)
Arguments
all.names |
a logical value. If 'TRUE', all object names are returned. If 'FALSE', names which begin with a '.' are omitted. |
Value
A list, with each element a vector of character strings giving the names of the objects on a given slave process.
See Also
remoteRm
Examples
## Not run:
bigGP.init(3)
a <- 3
b <- 7
push(a); push(b)
remoteLs()
remoteRm(a)
remoteLs()
## End(Not run)
[Package bigGP version 0.1.8 Index]