Nothing
`method.sse` <-
function(index.vars,X,pert)
{
r1=X[index.vars,]
rcd=1/kappa(r1%*%t(r1))
if(rcd>=10^(-3))
{
sol = -pert %*% t(r1) %*% solve(r1%*%t(r1))
error<-sum((-pert-sol%*%r1)^2)
} else
{
sol = rep(0,length(index.vars))
error <- Inf
}
return(list(sol=sol,error=error))
}
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.