source: other-projects/metadata-encoding/py/using-api/graphTest.py@ 38773

Last change on this file since 38773 was 38773, checked in by jc550, 4 months ago

last batch of python to move

File size: 221 bytes
Line 
1import matplotlib as mpl
2import matplotlib.pyplot as plt
3import numpy as np
4
5data = np.random.rand(308, 308)
6
7fig, ax = plt.subplots()
8ax.imshow(data, cmap=plt.cm.summer, interpolation='nearest', aspect='auto')
9plt.show()
Note: See TracBrowser for help on using the repository browser.