public class Euler extends java.lang.Object implements DiscretizedSDE
dXt = μ * dt + σ * sqrt(dt) * Zt;
| Modifier and Type | Field and Description |
|---|---|
SDE |
sde
the continuous-time multivariate SDE
|
| Constructor and Description |
|---|
Euler(SDE sde)
Discretize a multivariate SDE using the Euler scheme.
|
| Modifier and Type | Method and Description |
|---|---|
Vector |
dXt(Ft ft)
This is the SDE specification of a stochastic process.
|
Ft |
getNewFt()
Get an empty filtration for the process.
|
int |
nB()
Get the number of independent driving Brownian motions.
|
public final SDE sde
public Euler(SDE sde)
sde - a continuous-time SDEpublic Vector dXt(Ft ft)
dXt = μ * dt + σ * sqrt(dt) * Zt;
dXt in interface DiscretizedSDEft - filtrationdtpublic int nB()
DiscretizedSDEnB in interface DiscretizedSDEpublic Ft getNewFt()
DiscretizedSDEgetNewFt in interface DiscretizedSDE