|
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.SDE
public class SDE
This class represents a multi-dimensional, continuous-time, Stochastic Differential Equation (SDE) of this form: dX(t) = μ(t, Xt, Zt, ...) * dt + σ(t, Xt, Zt, ...) * dB(t).
| Field Summary | |
|---|---|
Drift |
mu
the drift
μ(t, Xt, Zt, ...) |
int |
nB
number of independent driving Brownian motions |
Diffusion |
sigma
the diffusion matrix
σ(t, Xt, Zt, ...) |
| Constructor Summary | |
|---|---|
SDE(Drift mu,
Diffusion sigma,
int nB)
Construct a multi-dimensional diffusion type stochastic differential equation. |
|
| Method Summary | |
|---|---|
Ft |
getFt()
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 Drift mu
μ(t, Xt, Zt, ...)
public final Diffusion sigma
σ(t, Xt, Zt, ...)
public final int nB
| Constructor Detail |
|---|
public SDE(Drift mu,
Diffusion sigma,
int nB)
mu - the driftsigma - the diffusion matrixnB - number of independent driving Brownian motions| Method Detail |
|---|
public Ft getFt()
|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||