Skip to content

Commit 6f40aa8

Browse files
committed
minor update
1 parent 9c8f9b0 commit 6f40aa8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lectures/newton_method.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -321,10 +321,10 @@ def plot_trajectories(params,
321321
ax2.plot(ks2, "-o", label="连续近似")
322322
323323
ks3 = compute_iterates(k0_a, q, params, n)
324-
ax1.plot(ks3, "-o", label="牛顿步骤")
324+
ax1.plot(ks3, "-o", label="牛顿法")
325325
326326
ks4 = compute_iterates(k0_b, q, params, n)
327-
ax2.plot(ks4, "-o", label="牛顿步骤")
327+
ax2.plot(ks4, "-o", label="牛顿法")
328328
329329
for ax in axes:
330330
ax.plot(k_star * np.ones(n), "k--")

0 commit comments

Comments
 (0)