R/kernel.g.R

Defines functions kernel.g

Documented in kernel.g

#' @title Gaussian kernel
#' @description Evaluates the Gaussian kernel
#' @param u vector of observations
#' @return evaluation of the Gaussian kernel
#' @export kernel.g
#' @examples
#' x = rnorm(100,1,2)
#' kernel.g(x)
kernel.g <- function(u){
dnorm(u)
}

Try the OVL.CI package in your browser

Any scripts or data that you put into this service are public.

OVL.CI documentation built on Nov. 14, 2023, 1:06 a.m.