Skip to content

Commit

Permalink
Avoid using star imports (#366)
Browse files Browse the repository at this point in the history
Co-authored-by: mmcky <[email protected]>
  • Loading branch information
Smit-create and mmcky authored Oct 23, 2023
1 parent 5f14448 commit 177218b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions lectures/re_with_feedback.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (11, 5) #set default figure size
import numpy as np
import quantecon as qe
from sympy import *
from sympy import init_printing, symbols, Matrix
init_printing()
```

Expand Down Expand Up @@ -1066,7 +1066,7 @@ Compare $F^*$ with $F_1 + F_2 F^*$
F_check[0] + F_check[1] * F_star, F_star
```

## Fun with SymPy
## Fun with SymPy

This section is a gift for readers who have made it this far.

Expand Down Expand Up @@ -1161,4 +1161,3 @@ $−(Q^{22})^{−1}Q^{21}$
```{code-cell} python3
- Q_inv[1, 0] / Q_inv[1, 1]
```

0 comments on commit 177218b

Please sign in to comment.