Nothing
'temporal_interpolate' <- function(obj,win=7,cover=0,verbose=FALSE)
{
fun <- "temporal_interpolate" # as.character(match.call())[1]
win <- floor(win/2)*2+1
if (win<1)
win <- 1
if (cover>1)
cover <- cover/win
if (cover>1)
cover <- 1
if (cover<0)
cover <- 0
isArray <- FALSE
if (!is.ursa(obj))
{
if (!is.array(obj))
return (NULL)
isArray <- TRUE
}
if (isArray)
{
dimx <- dim(obj)
a <- .Cursa(C_interp4
,x=as.numeric(obj),dim=as.integer(dimx),win=as.integer(win)
,cover=as.numeric(cover)
,res=numeric(prod(dimx)),NAOK=TRUE)$res
dim(a) <- dimx
return(a)
}
dimx <- dim(obj$value)
if (verbose)
.elapsedTime(paste(fun,"start",sep=":"))
obj$value[] <- .Cursa(C_interp4
,x=as.numeric(obj$value),dim=as.integer(dimx)
,win=as.integer(win),cover=as.numeric(cover)
,res=numeric(prod(dimx)),NAOK=TRUE)$res
if (verbose)
.elapsedTime(paste(fun,"stop",sep=":"))
obj
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.