Untitled
unknown
plain_text
a year ago
236 B
8
Indexable
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()Editor is loading...
Leave a Comment