Skip to content

Commit 5c514ef

Browse files
authored
Update cd_analytical.py
1 parent 500eed1 commit 5c514ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
def v_star(y, α, β, μ):
33
"""
4-
True value function
4+
真实价值函数
55
"""
66
c1 = np.log(1 - α * β) / (1 - β)
77
c2 = (μ + α * np.log(α * β)) / (1 - α)
@@ -11,7 +11,7 @@ def v_star(y, α, β, μ):
1111

1212
def σ_star(y, α, β):
1313
"""
14-
True optimal policy
14+
真实最优策略
1515
"""
1616
return (1 - α * β) * y
1717

0 commit comments

Comments
 (0)