| [ Web Proxy ] |
| Viewing: https://matplotlib.org/stable/api/_as_gen/../../plot_types/3D/../basic/../3D/quiver3d_simple.html | [Back] [Original] |
Note
Go to the end to download the full example code.
See quiver.
[quiver3d simple]import matplotlib.pyplot as plt
import numpy as np
plt.style.use('_mpl-gallery')
# Make data
n = 4
x = np.linspace(-1, 1, n)
y = np.linspace(-1, 1, n)
z = np.linspace(-1, 1, n)
X, Y, Z = np.meshgrid(x, y, z)
U = (X + Y)/5
V = (Y - X)/5
W = Z*0
# Plot
fig, ax = plt.subplots(subplot_kw={"projection": "3d"})
ax.quiver(X, Y, Z, U, V, W)
ax.set(xticklabels=[],
yticklabels=[],
zticklabels=[])
plt.show()
| Web Proxy Viewer | New URL | Original Page |