File indexing completed on 2026-04-09 07:49:07
0001
0002
0003 import os, numpy as np
0004 SIZE = np.array([1280, 720])
0005 MODE = int(os.environ.get("MODE","0"))
0006
0007 if MODE == 2:
0008 import matplotlib.pyplot as mp
0009 pass
0010
0011 if __name__ == '__main__':
0012 a = np.load(os.path.expandvars("$FOLD/RandGaussQ_shoot.npy"))
0013 print("a.shape\n",a.shape)
0014
0015 if MODE == 2:
0016 fig, ax = mp.subplots(figsize=SIZE/100.)
0017 ax.hist(a, bins=100)
0018 fig.show()
0019 pass
0020 pass
0021
0022