OpenMx (version 2.17.3)

omxLapply: On-Demand Parallel Lapply

Description

If the snowfall library is loaded, then this function calls sfLapply. Otherwise it invokes lapply.

Usage

omxLapply(x, fun, ...)

Arguments

x

a vector (atomic or list) or an expressions vector. Other objects (including classed objects) will be coerced by as.list.

fun

the function to be applied to each element of x.

...

optional arguments to fun.

See Also

omxApply, omxSapply

Examples

Run this code
# NOT RUN {
x <- list(a = 1:10, beta = exp(-3:3), logic = c(TRUE,FALSE,FALSE,TRUE))
# compute the list mean for each list element
omxLapply(x,mean)

# }

Run the code above in your browser using DataLab