# slight messing around with plotting library to test suitablility

import matplotlib as mpl
import matplotlib.pyplot as plt
import numpy as np

data = np.random.rand(308, 308)

fig, ax = plt.subplots()
ax.imshow(data, cmap=plt.cm.summer, interpolation='nearest', aspect='auto')
plt.show()