Nothing
#' Hessian: Linear combination function
#'
#' This function evaluates the Hessian matrix of the linear combination function \deqn{f(x_1,x_2,\ldots,x_k)=\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 linear combination function.
#'
#' @keywords internal
#' @noRd
Hessian_Linear_combination<-function(parameter,coefficient)
{
return(coefficient%*%t(coefficient)*0)
}
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.