Nothing
hanning.window <- function (n)
{
if (n == 1)
c <- 1
else
{
n <- n-1
c <- 0.5 - 0.5*cos(2*pi*(0:n)/n)
}
return(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.