aeMean {yuima} | R Documentation |
Asymptotic Expansion - Mean
Description
Asymptotic Expansion - Mean
Usage
aeMean(ae, eps = 1, order = NULL)
Arguments
ae |
an object of class |
eps |
numeric. The intensity of the perturbation. |
order |
integer. The expansion order. If |
Value
numeric.
Examples
## Not run:
# model
gbm <- setModel(drift = 'mu*x', diffusion = 'sigma*x', solve.variable = 'x')
# settings
xinit <- 100
par <- list(mu = 0.01, sigma = 0.2)
sampling <- setSampling(Initial = 0, Terminal = 1, n = 1000)
# asymptotic expansion
approx <- ae(model = gbm, sampling = sampling, order = 4, true.parameter = par, xinit = xinit)
# expansion order max
aeMean(ae = approx)
# expansion order 1
aeMean(ae = approx, order = 1)
## End(Not run)
[Package yuima version 1.15.27 Index]