Nothing
wtflat <- function(x, c)
{
if(-1 < x & x <= -c)
{
return(x/(1-c) + 1/(1-c))
}
if(-c < x & x < c)
{
return(1)
}
if(c < x & x < 1)
{
return(x/(c - 1) - 1/(c - 1))
}
else return(0)
}
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.