Class SDE
- java.lang.Object
-
- dev.nm.stat.stochasticprocess.univariate.sde.SDE
-
- Direct Known Subclasses:
GBMProcess
,OrnsteinUhlenbeckProcess
public class SDE extends Object
This class represents a univariate, continuous-time Stochastic Differential Equation (SDE) of the following form. \[ dX_t = \mu(t,X_t,Z_t,...)*dt + \sigma(t, X_t, Z_t, ...)*dB_t \]
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Diffusion
diffusion()
Get the diffusion coefficient: \(\sigma(t, X_t, Z_t, ...)\).Drift
drift()
Get the drift: \(\mu(t,X_t,Z_t,...)\).Ft
getFt()
Get an empty filtration of the process.
-
-
-
Method Detail
-
getFt
public Ft getFt()
Get an empty filtration of the process.- Returns:
- an empty filtration
-
drift
public Drift drift()
Get the drift: \(\mu(t,X_t,Z_t,...)\).- Returns:
- the drift
-
diffusion
public Diffusion diffusion()
Get the diffusion coefficient: \(\sigma(t, X_t, Z_t, ...)\).- Returns:
- the diffusion coefficient
-
-