Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-10 07:50:29

0001 #!/usr/bin/env python
0002 
0003 import os, numpy as np
0004 UU_BURN = os.environ.get("UU_BURN", "/tmp/UU_BURN.npy" )
0005 
0006 if __name__ == '__main__':
0007 
0008     a = np.array( [[10,3]], dtype=np.int32 ) 
0009 
0010     print(" UU_BURN : %s  a : %s " % ( UU_BURN, str(a.shape)) )
0011     print(a)
0012 
0013     np.save(UU_BURN, a )
0014 
0015 
0016