Nothing
`gpoly` <-
function(x)
{
e = x;
n = length(e);
c = c(1, rep(0,n));
for(j in 1:n)
{
c[2:(j+1)] = c[2:(j+1)] - e[j]*c[1:j];
}
return(Re(c))
}
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.