Back to home page

EIC code displayed by LXR

 
 

    


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

0001 #!/usr/bin/env python
0002 
0003 import os, numpy as np
0004 
0005 if __name__ == '__main__':
0006     tt = np.load(os.environ["TTPATH"])
0007     print(tt)
0008 
0009     expr = "np.c_[tt.view('datetime64[us]')]"
0010     print("\n%s\n"% expr )
0011     print(eval(expr))
0012