Matplotlib - Image Display
What is wrong with this code snippet?
import matplotlib.pyplot as plt import numpy as np img = np.random.rand(4,4) plt.imshow(img, extent=[0, 4, 4]) plt.show()
