Nothing
band.chol <-
function(x,k, centered=FALSE, method=c("fast", "safe"))
{
n=dim(x)[1]
method=match.arg(method)
if (!centered)
{
mx=apply(x, 2, mean)
x=scale(x, center=mx, scale=FALSE)
}
if(method=="fast")
{
sigma=fast.band(x=x, k=k)
} else
{
sigma=safe.band(x=x, k=k)
}
return(sigma)
}
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.