powered by
The registerDoSNOW function is used to register the SNOW parallel backend with the foreach package.
registerDoSNOW
registerDoSNOW(cl)
The cluster object to use for parallel execution.
makeCluster
# NOT RUN { cl <- makeCluster(2, type="SOCK") registerDoSNOW(cl) m <- matrix(rnorm(9), 3, 3) foreach(i=1:nrow(m), .combine=rbind) %dopar% (m[i,] / mean(m[i,])) stopCluster(cl) # }
Run the code above in your browser using DataLab