We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b515988 commit 0496a5fCopy full SHA for 0496a5f
1 file changed
lectures/cass_fiscal.md
@@ -554,13 +554,13 @@ F(k, 1) = A k^\alpha
554
$$
555
556
```{code-cell} ipython3
557
-def f(k, model):
+def f(k, model, A=1):
558
"""
559
生产函数:f(k) = A * k^{α}
560
561
return A * k ** model.α
562
563
-def f_prime(k, model):
+def f_prime(k, model, A=1):
564
565
资本的边际产出:f'(k) = α * A * k^{α - 1}
566
0 commit comments