Download this file
13 lines (9 with data), 235 Bytes
| from mpl_toolkits.mplot3d import axes3d
import pylab
import random
import numpy as np
fig = pylab.figure()
ax = axes3d.Axes3D(fig)
X, Y, Z = axes3d.get_test_data(0.05)
ax.plot_wireframe(X, Y, Z, rstride=10, cstride=10)
pylab.show()
|
×
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.