Displaying 1 result from an estimated 1 matches for "inputforfunct".
2012 May 15
1
Simple parallel for loop
Dear all,
I am having a for loop that iterates a given number of measurements that I would like to split over 16 available cores. The code is in the following format
inputForFunction<-expand.grid(caseList,filterList)
for (i in c(1:length(inputForFunction$Var1))){#
FileList<-GetFileList(flag=as.vector(inputForFunction$Var1[i]));
print(sprintf("Calling the plotsCreate for %s and%s",as.vector(inputForFunction$Var1[i]),as.vector(inputForFunction...