Displaying 3 results from an estimated 3 matches for "notdone".
2012 Mar 26
1
assigning vector or matrix sparsely (for use with mclapply)
...rs.
d <- data.frame( id=1:6, val=11:16 )
loc <- c(TRUE,TRUE,FALSE,TRUE,FALSE,TRUE)
v1 <- mc.byselectrows( d, loc, function(x) x[,2]^2 )
v2 <- mc.byselectrows(d, loc, function(x) cbind(x[,2]^2,x[,2]^3))
mc.byselectrows <- function(data.in, recalclist, FUN, ...) {
? data.notdone <- data.in[recalclist,]
? cat.stderr("[mc.byselectrows: ", nrow(data.notdone), "rows to be
recomputed out of", nrow(data.in), "]\n")
? FUN.ON.ROWS <- function(.index, ...)
as.matrix(FUN(data.notdone[.index,], ...))
? soln <- mclapply( as.list(1:nrow(data.notd...
2007 Aug 14
4
Import of Access data via RODBC changes column name ("NO" to "Expr1014") and the content of the column
...return(.con)
.tbls <- .tbls[-grep("^MSys", .tbls)]
.d <- lapply(seq(along = .tbls), function(.i){
.d <-
try(get.table(.tbls[.i], db = db))
return(invisible(.d))
})
names(.d) <- .tbls
.ok <- !sapply(.d, inherits, "try-error")
return(list(notdone = .d[!.ok], data = .d[.ok]))
}
library(RODBC)
alldata <- get.alltables(db = "./myaccessdb.MDB")
## code end
2005 Aug 17
2
MMX loop filter for theora-exp
...Rudolf
-------------- next part --------------
diff -Naur a/lib/decode.c b/lib/decode.c
--- a/lib/decode.c 2005-08-17 09:29:57.250868250 +0200
+++ b/lib/decode.c 2005-08-17 09:58:23.601508500 +0200
@@ -2031,7 +2031,7 @@
if(pipe.loop_filter){
sdelay+=notstart;
edelay+=notdone;
- oc_state_loop_filter_frag_rows(&_dec->state,pipe.bounding_values+256,
+ oc_state_loop_filter_frag_rows(&_dec->state,pipe.bounding_values,
refi,pli,pipe.fragy0[pli]-sdelay,pipe.fragy_end[pli]-edelay);
}
/*To fill the borders, we have a...