Skip to content
Snippets Groups Projects
Commit 959b8a67 authored by Berend Bouvy's avatar Berend Bouvy
Browse files

forecast update

parent 382a0ee3
No related branches found
No related tags found
No related merge requests found
......@@ -24,8 +24,11 @@ In summary, given a time series $Y=\mathrm{Ax}+\epsilon$, the workflow is as fol
3. Predict the signal-of-interest: $\hat{Y}_{signal}=\mathrm{A}_p\hat{X}$, where $\mathrm{A}_p$ is the design matrix describing the functional relationship between the future values $Y_p$ and $\mathrm{x}$.
4. Predict the noise $\hat{\epsilon}_p$ based on the AR model.
4. Predict the noise $\hat{\epsilon}_p$ based on the AR model. $\hat{\epsilon}_p = \Sigma_{Y_pY}\Sigma_Y^{-1}\hat{\epsilon}$, where $\Sigma_{Y_pY}$ is the covariance matrix between the future values $Y_p$ and the observed values $Y$.
5. Predict future values of the time series: $\hat{Y}_p=\mathrm{A}_p\hat{X}+\hat{\epsilon}_p$.
```(note)
This procedure is a general approach to forecasting time series data. It resembles the process of stochastic inter- and extrapolation, which is used in many fields of science and engineering.
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment