Skip to content

Commit caeb814

Browse files
Tom's edit of time series with matrices lecture
1 parent 7cacd00 commit caeb814

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

lectures/time_series_with_matrices.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -510,12 +510,11 @@ To make it stationary, we'd have to alter our system so that our **initial condi
510510
511511
We describe how to do that in another lecture in this lecture {doc}`Linear State Space Models <linear_models>`.
512512
513-
But just to set the stage for that analysis, let's increase $T$ to 100 and print out the bottom right corner of $\Sigma_y$.
513+
But just to set the stage for that analysis, let's print out the bottom right corner of $\Sigma_y$.
514514
515515
```{code-cell} ipython3
516-
my_process = population_moments(alpha0=0, alpha1=.8, alpha2=0, T=100, y_1=0., y0=0., sigma_u=1)
517516
mu_y, Sigma_y = my_process.get_moments()
518-
print("bottom right corner of Sigma_y = \n", Sigma_y[95:,95:])
517+
print("bottom right corner of Sigma_y = \n", Sigma_y[72:,72:])
519518
```
520519
521520
Please notice how the sub diagonal and super diagonal elements seem to have converged.

0 commit comments

Comments
 (0)