Nothing
FlatTop <- function(x)
{
out <- 0
if(x < 0.5)
{
out <- 1
}
else if(x >= 0.5 && x <= 1)
{
out <- 2 - 2*x
}
else
{
out <- 0
}
return(out)
}
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.