|
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.timeseries.linear.multivariate.stationaryprocess.InnovationAlgorithmImpl
public abstract class InnovationAlgorithmImpl
This class implements the part of the innovation algorithm that computes the prediction coefficients, V and Θ.
Subclasses implement the actual prediction algorithms for XtHat.
| Field Summary | |
|---|---|
protected MultiVariateTimeSeries |
XtHat
the one-step ahead predictors, {X^t+1} |
| Constructor Summary | |
|---|---|
protected |
InnovationAlgorithmImpl()
|
| Method Summary | |
|---|---|
ImmutableMatrix |
covariance(int t)
Get the covariance matrix for prediction errors at time t for X^t+1. |
ImmutableMatrix |
getTheta(int i,
int j)
Get the coefficients of the linear predictor. |
protected void |
run(int t,
AutoCovarianceFunction K)
Run the Innovation Algorithm to compute the prediction parameters. |
MultiVariateTimeSeries |
XtHat()
Get all the one-step predictions X^t+1, t ∈ [0, t] |
ImmutableVector |
XtHat(int t)
Get the one-step prediction X^t+1. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
protected MultiVariateTimeSeries XtHat
| Constructor Detail |
|---|
protected InnovationAlgorithmImpl()
| Method Detail |
|---|
protected void run(int t,
AutoCovarianceFunction K)
t - time series lengthK - the covariance structure of the time series
public ImmutableMatrix getTheta(int i,
int j)
i - i, ranging from 1 to tj - j, ranging from 1 to t
public ImmutableMatrix covariance(int t)
t - time, ranging from 0 to t
public ImmutableVector XtHat(int t)
t - time, ranging from 0 to t
public MultiVariateTimeSeries XtHat()
|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||