|
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.integration.Filtration
public class Filtration
This class represents the filtration information known at the end of time. It contains all histories about a simulation.
| Constructor Summary | |
|---|---|
Filtration(TimeSeries<java.lang.Double> Bt)
Construct a Filtration from a Brownian path. |
|
| Method Summary | |
|---|---|
double |
B(int t)
Get the Brownian motion value at time t. |
double[] |
Bt()
Get the entire Brownian path. |
double |
dB(int t)
Get the Brownian increment at the t-th time grid point. |
double[] |
dBt()
Get all the Brownian increments. |
double[] |
dt()
Get all the time increments. |
double |
dt(int t)
Get the t-th time increment. |
int |
size()
Get the length of the history, excluding the initial value (0). |
double[] |
T()
Get the entire time grid. |
double |
T(int t)
Get the t-th time point. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public Filtration(TimeSeries<java.lang.Double> Bt)
Bt - a Brownian path| Method Detail |
|---|
public int size()
public double B(int t)
B(0) = 0
t - time, counting from 0
public double[] Bt()
B[0] = 0
public double dB(int t)
dB[0] = B(1) - B(0) = B(1)
t - time, counting from 0
public double[] dBt()
public double T(int t)
t - the time index
public double[] T()
public double dt(int t)
dt[0] = t[1] - t[0] = t[1] - t0
t - time, counting from 0
public double[] dt()
|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||