Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lectures/newton_method.md
Original file line number Diff line number Diff line change
Expand Up @@ -315,10 +315,10 @@ def plot_trajectories(params,
ax2.plot(ks2, "-o", label="连续近似")

ks3 = compute_iterates(k0_a, q, params, n)
ax1.plot(ks3, "-o", label="牛顿步骤")
ax1.plot(ks3, "-o", label="牛顿法")

ks4 = compute_iterates(k0_b, q, params, n)
ax2.plot(ks4, "-o", label="牛顿步骤")
ax2.plot(ks4, "-o", label="牛顿法")

for ax in axes:
ax.plot(k_star * np.ones(n), "k--")
Expand Down
Loading
Loading