Created
August 16, 2017 06:24
-
-
Save kevingduck/8b1f1aaf53772a3959b16f8a588ea8d7 to your computer and use it in GitHub Desktop.
3D Plot Demo.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# coding: utf-8 | |
from mpl_toolkits.mplot3d import Axes3D | |
from matplotlib import cm | |
from matplotlib.ticker import LinearLocator, FormatStrFormatter | |
import matplotlib.pyplot as plt | |
import numpy as np | |
fig = plt.figure() | |
ax = fig.gca(projection='3d') | |
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) | |
surf = ax.plot_surface(X, Y, Z, rstride=1, cstride=1, cmap=cm.coolwarm, linewidth=0, antialiased=False) | |
ax.set_zlim(-1.01, 1.01) | |
ax.zaxis.set_major_locator(LinearLocator(10)) | |
ax.zaxis.set_major_formatter(FormatStrFormatter('%.02f')) | |
fig.colorbar(surf, shrink=0.5, aspect=5) | |
plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment