Skip to content

Commit 93ab3bf

Browse files
authored
Modify the callings of LinearStateSpace.stationary_distributions (#200)
1 parent 6f5302b commit 93ab3bf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/rst/knowing_forecasts_of_others.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1058,7 +1058,7 @@ coefficients.
10581058

10591059
.. code-block:: python3
10601060
1061-
_, _, Σ_x, Σ_y = lss.stationary_distributions()
1061+
_, _, Σ_x, Σ_y, Σ_yx = lss.stationary_distributions()
10621062
10631063
Σ_11 = Σ_x[0, 0]
10641064
Σ_12 = Σ_x[0, 1:4]
@@ -1280,7 +1280,7 @@ For this purpose, we include equilibrium goods prices from both industries app
12801280
12811281
.. code-block:: python3
12821282
1283-
_, _, Σ_x, Σ_y = lss.stationary_distributions()
1283+
_, _, Σ_x, Σ_y, Σ_yx = lss.stationary_distributions()
12841284
12851285
Σ_11 = Σ_x[1, 1]
12861286
Σ_12 = Σ_x[1, 2:5]
@@ -1315,7 +1315,7 @@ For this purpose, we include equilibrium goods prices from both industries app
13151315
13161316
.. code-block:: python3
13171317
1318-
_, _, Σ_x, Σ_y = lss.stationary_distributions()
1318+
_, _, Σ_x, Σ_y, Σ_yx = lss.stationary_distributions()
13191319
13201320
Σ_11 = Σ_x[1, 1]
13211321
Σ_12 = Σ_x[1, 2:6]

0 commit comments

Comments
 (0)