Skip to content

Commit fb4a980

Browse files
committed
sequential map for non-negative surface
1 parent d147008 commit fb4a980

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/mplot3d/surface3d_radial_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
X,Y = R*np.cos(P),R*np.sin(P)
1919

2020
Z = ((R**2 - 1)**2)
21-
ax.plot_surface(X, Y, Z, rstride=1, cstride=1, cmap=cm.jet)
21+
ax.plot_surface(X, Y, Z, rstride=1, cstride=1, cmap=cm.YlGnBu_r)
2222
ax.set_zlim3d(0, 1)
2323
ax.set_xlabel(r'$\phi_\mathrm{real}$')
2424
ax.set_ylabel(r'$\phi_\mathrm{im}$')

0 commit comments

Comments
 (0)