UNU.RAN object for Meixner distribution
Create UNU.RAN object for a Meixner distribution with scale parameter alpha
, asymmetry (shape) parameter beta
, shape parameter delta
and location parameter mu
.
[Distribution] -- Meixner.
udmeixner(alpha, beta, delta, mu, lb=-Inf, ub=Inf)
alpha
: scale parameter (must be strictly positive).beta
: asymmetry (shape) parameter (must be larger than and smaller than ).delta
: shape parameter (must be strictly positive).mu
: location parameter.lb
: lower bound of (truncated) distribution.ub
: upper bound of (truncated) distribution.The Mexiner distribution with parameters , , , and
has density
where the normalization constant is given by
The symbol denotes the imaginary unit, that is, we have to evaluate the gamma function for complex arguments .
Notice that ,
and .
The domain of the distribution can be truncated to the interval (lb
,ub
).
An object of class "unuran.cont"
.
unuran.cont
.
Grigelionis, B., 1999. Processes of Meixner type. Lithuanian Mathematical Journal, Vol. 39, p. 33--41.
Schoutens, W., 2001. The Meixner Processes in Finance. Eurandom Report 2001-002, Eurandom, Eindhoven.
Josef Leydold and Kemal Dingec unuran@statmath.wu.ac.at .
## Create distribution object for meixner distribution distr <- udmeixner(alpha=0.0298, beta=0.1271, delta=0.5729, mu=-0.0011) ## Generate generator object; use method PINV (inversion) gen <- pinvd.new(distr) ## Draw a sample of size 100 x <- ur(gen,100)