You are reading an old version of the documentation (v2.2.5). For the latest version see https://matplotlib.org/stable/gallery/mplot3d/wire3d.html
Version 2.2.5
matplotlib
Fork me on GitHub

Related Topics

3D wireframe plotΒΆ

A very basic demonstration of a wireframe plot.

../../_images/sphx_glr_wire3d_001.png
from mpl_toolkits.mplot3d import axes3d
import matplotlib.pyplot as plt


fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')

# Grab some test data.
X, Y, Z = axes3d.get_test_data(0.05)

# Plot a basic wireframe.
ax.plot_wireframe(X, Y, Z, rstride=10, cstride=10)

plt.show()

Keywords: matplotlib code example, codex, python plot, pyplot Gallery generated by Sphinx-Gallery