powered by
The cumulative probability distribution function (CDF) of the classic tempered stable distribution.
pCTS( q, alpha = NULL, deltap = NULL, deltam = NULL, lambdap = NULL, lambdam = NULL, mu = NULL, theta = NULL, a = -40, b = 40, nf = 2^13, ... )
As q is a numeric vector, the return value is also a numeric vector of probabilities.
q
A numeric vector of quantiles.
Stability parameter. A real number between 0 and 2.
Scale parameter for the right tail. A real number > 0.
Scale parameter for the left tail. A real number > 0.
Tempering parameter for the right tail. A real number > 0.
Tempering parameter for the left tail. A real number > 0.
A location parameter, any real number.
Parameters stacked as a vector.
Starting point of FFT, if dens_method == "FFT". -20 by default.
dens_method == "FFT"
Ending point of FFT, if dens_method == "FFT". 20 by default.
Pieces the transformation is divided in. Limited to power-of-two size.
Possibility to modify stats::integrate().
stats::integrate()
theta denotes the parameter vector (alpha, deltap, deltam, lambdap, lambdam, mu). Either provide the parameters individually OR provide theta. The function integrates the PDF numerically with integrate().
theta
(alpha, deltap, deltam, lambdap, lambdam, mu)
integrate()
See also the dCTS() density-function.
dCTS()
# \donttest{ x <- seq(-5,5,0.25) y <- pCTS(x,0.5,1,1,1,1,1) plot(x,y) # }
Run the code above in your browser using DataLab