Blame view
220222_final/EP/init_freq.py
159 Bytes
35833671e
|
1 2 3 4 5 6 7 8 9 10 11 |
import numpy as np a=np.int64(288012050) print(type(a)) print(a) a.tofile("freq.txt") b=np.int64(1717915000) print(type(b)) print(b) b.tofile("freq_AD.txt") |