- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path3dplot2darray.py
More file actions
Latest commit
30 lines (23 loc) · 744 Bytes
/
Copy path3dplot2darray.py
File metadata and controls
30 lines (23 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
frommpl_toolkits.mplot3dimportAxes3D
importmatplotlib.pyplotasplt
frommatplotlibimportcm
frommatplotlib.tickerimportLinearLocator, FormatStrFormatter
importnumpyasnp
fig=plt.figure()
ax=fig.gca(projection='3d')
# Make data.
X=np.arange(-5, 5, 0.25)
Y=np.arange(-5, 5, 0.25)
X, Y=np.meshgrid(X, Y)
R=np.sqrt(X**2+Y**2)
Z=np.sin(R)
# Plot the surface.
surf=ax.plot_surface(X, Y, Z, cmap=cm.coolwarm,
linewidth=0, antialiased=False)
# Customize the z axis.
ax.set_zlim(-1.01, 1.01)
ax.zaxis.set_major_locator(LinearLocator(10))
ax.zaxis.set_major_formatter(FormatStrFormatter('%.02f'))
# Add a color bar which maps values to colors.
fig.colorbar(surf, shrink=0.5, aspect=5)
plt.show()