R/dFrank.R

Defines functions dFrank

Documented in dFrank

#' Frank's copula
#'
#' @description returns the density function of Frank's copula  
#' @export 
#' @keywords internal 
#'
#'

dFrank <- function(u,v,theta){(theta*(1-exp(-theta))*exp(-theta*(u+v)))/ (exp(-theta) +  exp(-theta*(u+v))- exp(-theta*u)-exp(-theta*v))^2}

Try the CompAREdesign package in your browser

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

CompAREdesign documentation built on Oct. 2, 2022, 5:08 p.m.