Skip to content

Instantly share code, notes, and snippets.

@shubham-singh-ss
Created July 4, 2019 05:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shubham-singh-ss/dc55e9fd59307f4fa0fa44d9d0910b53 to your computer and use it in GitHub Desktop.
Save shubham-singh-ss/dc55e9fd59307f4fa0fa44d9d0910b53 to your computer and use it in GitHub Desktop.
from matplotlib import cm
from mpl_toolkits.mplot3d import Axes3D
import matplotlib.pyplot as plt
import numpy as np
fig = plt.figure()
ax = fig.gca(projection='3d')
X = np.arange(-10, 10, 0.1)
Y = np.arange(-10, 10, 0.1)
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)
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment