Matplotlib - Image Display
What is wrong with this code?
import matplotlib.pyplot as plt import numpy as np image = np.array([[0, 1], [2, 3]]) plt.imshow(image, cmap='jet') plt.colorbar plt.show()
