|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
java.lang.Objectcom.numericalmethod.suanshu.stats.stochasticprocess.multivariate.sde.Euler
public class Euler
The Euler scheme is the first order approximation of an SDE.
dXt = μ * dt + σ * sqrt(dt) * Zt;
| Field Summary | |
|---|---|
SDE |
sde
the continuous-time multivariate SDE |
| Constructor Summary | |
|---|---|
Euler(SDE sde)
Discretize a multivariate SDE using the Euler scheme. |
|
| Method Summary | |
|---|---|
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. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public final SDE sde
| Constructor Detail |
|---|
public Euler(SDE sde)
sde - a continuous-time SDE| Method Detail |
|---|
public Vector dXt(Ft ft)
dXt = μ * dt + σ * sqrt(dt) * Zt;
dXt in interface DiscretizedSDEft - filtration
dtpublic int nB()
DiscretizedSDE
nB in interface DiscretizedSDEpublic Ft getNewFt()
DiscretizedSDE
getNewFt in interface DiscretizedSDE
|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||