| [ Web Proxy ] |
| Viewing: https://matplotlib.org/gallery/mplot3d/../widgets/../widgets/../../plot_types/arrays/imshow.html | [Back] [Original] |
Note
Go to the end to download the full example code.
Display data as an image, i.e., on a 2D regular raster.
See imshow.
[imshow]import matplotlib.pyplot as plt
import numpy as np
plt.style.use('_mpl-gallery-nogrid')
# make data
X, Y = np.meshgrid(np.linspace(-3, 3, 16), np.linspace(-3, 3, 16))
Z = (1 - X/2 + X**5 + Y**3) * np.exp(-X**2 - Y**2)
# plot
fig, ax = plt.subplots()
ax.imshow(Z, origin='lower')
plt.show()
| Web Proxy Viewer | New URL | Original Page |