dnVarianceGamma - Variance-gamma Distribution
| mu : | Real (pass by const reference) |
| The mean parameter. | |
| Default : 0 | |
| kappa : | RealPos (pass by const reference) |
| The standard deviation parameter. | |
| Default : 1 | |
| tau : | RealPos (pass by const reference) |
| The standard deviation parameter. | |
| Default : 1 | |
| time : | RealPos (pass by const reference) |
| The duration of time for the process. | |
| Default : 1 |
# we simulate some oversations
x <- rnorm(n=10,mean=5,sd=10)
# let's see what the minum is (you could do the max too)
min(x)
# let's also see what the mean and the variance are
mean(x)
var(x)
sd(x)