Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-09 07:49:17

0001 #!/usr/bin/env python
0002 
0003 import os, numpy as np 
0004 import matplotlib.pyplot as plt
0005 
0006 if __name__ == '__main__':
0007     a = np.load(os.path.expandvars("$NPY"))
0008     print("a.shape : %s " % repr(a.shape))
0009     fig, ax = plt.subplots(1)
0010 
0011     ax.imshow(a)
0012     ax.set_xlabel("a")
0013 
0014     plt.show()
0015 
0016