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