Skip to content

Instantly share code, notes, and snippets.

@lisitsyn
Created August 26, 2011 21:00
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 lisitsyn/af0a931e8c849691df4a to your computer and use it in GitHub Desktop.
Save lisitsyn/af0a931e8c849691df4a to your computer and use it in GitHub Desktop.
from mpl_toolkits.mplot3d import Axes3D
import numpy as np
import matplotlib
import matplotlib.pyplot as plt
fig = plt.figure()
ax = Axes3D(fig)
x = np.array([6,3,6,9,12,24])
y = np.array([3,5,78,12,23,56])
ax.plot(x, y, x*y)
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment