Learn R Programming

BaPreStoPro (version 0.1)

simulate,mixedDiffusion-method: Simulation of hierarchical (mixed) diffusion model

Description

Simulation of the stochastic process model $dY_t = b(\phi_j,t,Y_t)dt + \gamma \widetilde{s}(t,Y_t)dW_t, \phi_j~N(\mu, \Omega)$.

Usage

"simulate"(object, nsim = 1, seed = NULL, t, mw = 1, plot.series = TRUE)

Arguments

object
class object of parameters: "mixedDiffusion"
nsim
number of data sets to simulate. Default is 1.
seed
optional: seed number for random number generator
t
vector of time points
mw
mesh width for finer Euler approximation to simulate time-continuity
plot.series
logical(1), if TRUE, simulated series are depicted grafically

Examples

Run this code
mu <- 2; Omega <- 0.4; phi <- matrix(rnorm(21, mu, sqrt(Omega)))
model <- set.to.class("mixedDiffusion", y0.fun = function(phi, t) 0.5,
  parameter = list(phi = phi, mu = mu, Omega = Omega, gamma2 = 0.1),
  b.fun = function(phi, t, x) phi*x, sT.fun = function(t, x) x)
t <- seq(0, 1, by = 0.01)
data <- simulate(model, t = t, plot.series = TRUE)

Run the code above in your browser using DataLab