From ff82918ad4202f000899be5c53fe09c421a21b2d Mon Sep 17 00:00:00 2001 From: John Stachurski Date: Mon, 11 May 2020 19:01:06 +1000 Subject: [PATCH] Revert "[coase] fixing scipy error" --- source/rst/coase.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/rst/coase.rst b/source/rst/coase.rst index b9fc953..285472a 100644 --- a/source/rst/coase.rst +++ b/source/rst/coase.rst @@ -473,7 +473,7 @@ To begin, here's a class to store primitives and a grid: c=lambda t: np.exp(10 * t) - 1): self.n, self.delta, self.c = n, delta, c - self.grid = np.linspace(1e-04, 1, n) + self.grid = np.linspace(0, 1, n) Now let's implement and iterate with :math:`T` until convergence.