Skip to content

Commit 33f5349

Browse files
Update plot_2d_landscape_for_nonsmooth_functions.py
1 parent f696a5d commit 33f5349

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tutorials/plot_2d_landscape_for_nonsmooth_functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
def plot_contour(func, x, y):
2020
x, y, z = generate_xyz(func, x, y, 500)
2121
plt.contourf(x, y, z, cmap='cool')
22-
plt.contour(x, y, z, colors='white', alpha=0.5)
22+
plt.contour(x, y, z, colors='white')
2323

2424

2525
if __name__ == '__main__':

0 commit comments

Comments
 (0)