## File Name: mdmb_exp_overflow.R
## File Version: 0.05
mdmb_exp_overflow <- function(x, M=200)
{
x <- ifelse( x > M, M, x)
y <- exp(x)
return(y)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.