public class Brownian extends java.lang.Object implements DiscretizedSDE
| Modifier and Type | Field and Description |
|---|---|
int |
d
the dimension of this Brownian motion
|
Vector |
mu
μ, the drift
|
Matrix |
sigma
σ, the diffusion constant
|
| Constructor and Description |
|---|
Brownian(int d)
Construct a multi-dimensional Brownian motion.
|
Brownian(Vector mu,
Matrix sigma)
Construct a multi-dimensional Brownian motion with μ and σ.
|
| Modifier and Type | Method and Description |
|---|---|
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.
|
public final int d
public final Vector mu
public final Matrix sigma
public Brownian(int d)
d - the dimensionpublic Vector dXt(Ft ft)
DiscretizedSDEdXt in interface DiscretizedSDEft - filtrationdtpublic int nB()
DiscretizedSDEnB in interface DiscretizedSDEpublic Ft getNewFt()
DiscretizedSDEgetNewFt in interface DiscretizedSDE