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 univariate SDE
|
| Constructor and Description |
|---|
Euler(SDE sde)
Discretize a univariate SDE using the Euler scheme.
|
| Modifier and Type | Method and Description |
|---|---|
double |
dXt(Ft ft)
This is the SDE specification of the stochastic process.
|
Ft |
getNewFt()
Get an empty filtration for the process.
|
public final SDE sde
public Euler(SDE sde)
sde - continuous-time SDEpublic double dXt(Ft ft)
dXt = μ * dt + σ * sqrt(dt) * Zt;
dXt in interface DiscretizedSDEft - filtrationdtpublic Ft getNewFt()
DiscretizedSDEgetNewFt in interface DiscretizedSDE