[ Web Proxy ]
URL:
Viewing: https://matplotlib.org/gallery/mplot3d/../showcase/../misc/../../plot_types/3D/wire3d_simple.html [Back]  [Original]

plot_wireframe(X, Y, Z) — Matplotlib 3.11.2 documentation
Back to top
Search the docs ...:

plot_wireframe(X, Y, Z)#

See plot_wireframe.

wire3d simple [wire3d simple]
import matplotlib.pyplot as plt

from mpl_toolkits.mplot3d import axes3d

plt.style.use('_mpl-gallery')

# Make data
X, Y, Z = axes3d.get_test_data(0.05)

# Plot
fig, ax = plt.subplots(subplot_kw={"projection": "3d"})
ax.plot_wireframe(X, Y, Z, rstride=10, cstride=10)

ax.set(xticklabels=[],
       yticklabels=[],
       zticklabels=[])

plt.show()

Gallery generated by Sphinx-Gallery


Web Proxy Viewer  |  New URL  |  Original Page