##// END OF EJS Templates
Étiquette SOLO_LFR_01-5B (MINI-LFR) ajoutée à la révision 4ed42a4f20c6
Étiquette SOLO_LFR_01-5B (MINI-LFR) ajoutée à la révision 4ed42a4f20c6

File last commit:

r647:3005781845db default
r660:70d63ed48614 default
Show More
generate.py
7 lines | 178 B | text/x-python | PythonLexer
import numpy as np
import random
W,H=8,400000
test = np.ones((H,W))*[(random.random()*65535)-32768 for col in range(W)]
np.savetxt("input.txt", test,fmt="%d", delimiter=" ")