Skip to content

Commit

Permalink
Tom's small edit of consn smoothing, Feb 5
Browse files Browse the repository at this point in the history
  • Loading branch information
thomassargent30 committed Feb 5, 2024
1 parent 43fd5a3 commit 194aef5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lectures/cons_smooth.md
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ def compute_optimal(model, a0, y_seq):
a_seq = np.linalg.inv(A) @ b
a_seq = np.concatenate([[a0], a_seq])
return c_seq, a_seq
return c_seq, a_seq, h0

This comment has been minimized.

Copy link
@mmcky

mmcky Feb 5, 2024

Contributor

@thomassargent30 we will need to update the tuple where these values are returned.

```
We use an example where the consumer inherits $a_0<0$.
Expand Down

0 comments on commit 194aef5

Please sign in to comment.