Untitled
import numpy as np import matplotlib.pyplot as plt # Create a 16x64 grid of zeros grid = np.zeros((16, 64)) # Plotting the grid plt.imshow(grid, cmap='Blues', interpolation='nearest') plt.axis('off') # Turn off axis labels plt.show()
Leave a Comment