Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Three-dimensional Contour Plots

fig = plt.figure()
ax = plt.axes(projection='3d')
ax.contour3D(X, Y, Z, 50, cmap='binary')
ax.set_xlabel('x')
ax.set_ylabel('y')
ax.set_zlabel('z');
Source by jakevdp.github.io #
 
PREVIOUS NEXT
Tagged: #Contour #Plots
ADD COMMENT
Topic
Name
7+8 =