Nothing
#' log summation of exponential function
#'
#' log summation of exponential variable vector.
#' @param x A variable vector.
#' @return
#' \item{val}{log summation of exponential variable vector.}
#' @export
#'
logsumexp <- function(x){
log(sum(exp(x - max(x)))) + max(x)
}
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.