R/FT_cdf.R

Defines functions cdfFT

cdfFT = function(x,mu,Sigma,nu)
{
  p = length(mu)
  if(p==1)
  {
    return(pent2(-x,x,mu,Sigma,nu))
  }else
  {
    return(pmvt.genz(lower = -x-mu,upper = x-mu,nu = nu,sigma = Sigma)$Estimation)
  }
}

Try the MomTrunc package in your browser

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

MomTrunc documentation built on June 16, 2022, 1:06 a.m.