Skip to content

Commit 0496a5f

Browse files
authored
Update cass_fiscal.md
1 parent b515988 commit 0496a5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lectures/cass_fiscal.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -554,13 +554,13 @@ F(k, 1) = A k^\alpha
554554
$$
555555
556556
```{code-cell} ipython3
557-
def f(k, model):
557+
def f(k, model, A=1):
558558
"""
559559
生产函数:f(k) = A * k^{α}
560560
"""
561561
return A * k ** model.α
562562
563-
def f_prime(k, model):
563+
def f_prime(k, model, A=1):
564564
"""
565565
资本的边际产出:f'(k) = α * A * k^{α - 1}
566566
"""

0 commit comments

Comments
 (0)