Skip to content

Commit 30bf98e

Browse files
authored
Merge pull request #39 from QuantEcon/pandas_panel
[pandas_panel] Translation Update
2 parents 3601a41 + c1f869f commit 30bf98e

File tree

3 files changed

+137
-88
lines changed

3 files changed

+137
-88
lines changed

lectures/newton_method.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -315,10 +315,10 @@ def plot_trajectories(params,
315315
ax2.plot(ks2, "-o", label="连续近似")
316316
317317
ks3 = compute_iterates(k0_a, q, params, n)
318-
ax1.plot(ks3, "-o", label="牛顿步骤")
318+
ax1.plot(ks3, "-o", label="牛顿法")
319319
320320
ks4 = compute_iterates(k0_b, q, params, n)
321-
ax2.plot(ks4, "-o", label="牛顿步骤")
321+
ax2.plot(ks4, "-o", label="牛顿法")
322322
323323
for ax in axes:
324324
ax.plot(k_star * np.ones(n), "k--")

0 commit comments

Comments
 (0)