|
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.Ft
public class Ft
This represents the concept 'Filtration', the information available at time t.
The information can include, for example,
| Constructor Summary | |
|---|---|
Ft()
Construct an empty filtration (no information). |
|
Ft(Ft that)
Copy constructor. |
|
| Method Summary | |
|---|---|
Ft |
deepCopy()
The implementation can return an instance created from this by the copy
constructor of the class, or just this if the instance itself is
immutable. |
double |
dt()
Get the current time differential. |
double |
dWt()
Get the increment of the driving Brownian motion during the time differential. |
void |
setDt(double dt)
Set the current time differential. |
void |
setXt(double Xt)
Set the current value of the stochastic process. |
void |
setZt(double Zt)
Set the value of the Gaussian distribution innovation. |
double |
Xt()
Get the current value of the stochastic process. |
double |
Zt()
Get the current value of the Gaussian distribution innovation. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public Ft()
public Ft(Ft that)
that - another Ft| Method Detail |
|---|
public Ft deepCopy()
DeepCopyablethis by the copy
constructor of the class, or just this if the instance itself is
immutable.
deepCopy in interface DeepCopyablepublic void setDt(double dt)
dt - the time differentialpublic double dt()
public void setXt(double Xt)
Xt - the current value of the stochastic processpublic double Xt()
public void setZt(double Zt)
Zt - the Gaussian distribution innovationpublic double Zt()
public double dWt()
This is the product of the Gaussian distribution innovation and the square root of the time differential.
|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||