## Draw random variates from an exponentially tilted stable distribution
## with given alpha, V0, and h = 1
alpha <- .2
N = 200
V0 <- rgamma(N, 1)
rETS <- retstable.ld(N, alpha, V0)
## Distribution plot the random variates -- log-scaled
hist(log(rETS), prob=TRUE)
lines(density(log(rETS)), col=2)
rug (log(rETS))
Run the code above in your browser using DataLab