SoTh = function(x, lambda)
{
if (lambda==0) return (x)
if (x > lambda) return (x-lambda)
if (x < -lambda) return (x+lambda)
return (0)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.