Matplotlib - Image Display
What will be the output of this code?
import matplotlib.pyplot as plt import numpy as np img = np.array([[5, 10], [15, 20]]) plt.imshow(img, cmap='hot') plt.colorbar() plt.show()
