Nothing
#' Hessian function: Exponential function
#'
#' This function evaluates the Hessian matrix of the exponential function \deqn{f(x_1,x_2,\ldots,x_k)=\exp(\sum_{i=1}^kc_ix_{i}).}
#'
#' @param parameter The value of the parameters \eqn{x_1,x_2,\ldots,x_k}.
#' @param coefficient The value of the coefficients \eqn{c_1,c_2,\ldots,c_k}.
#'
#' @return
#' Hessian matrix of the exponential function.
#'
#' @keywords internal
#' @noRd
Hessian_Exponential<-function(parameter,coefficient)
{
return(coefficient%*%t(coefficient)*exp(sum(coefficient*parameter)))
}
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.