Back to home page

EIC code displayed by LXR

 
 

    


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

0001 #!/usr/bin/env python
0002 """
0003 
0004 
0005 """
0006 import os, numpy as np
0007 
0008 #import matplotlib.pyplot as mp  
0009 #SIZE = np.array([1280, 720])
0010 
0011 np.set_printoptions(precision=5, linewidth=200, suppress=True )
0012 
0013 
0014 if __name__ == '__main__':
0015     a = np.load(os.path.expandvars("$FOLD/curanddr_uniform_test.npy"))
0016     print("a.shape\n",a.shape)
0017     print("a[:10]\n",a[:10])
0018     print("a[-10:]\n",a[-10:])
0019