##// END OF EJS Templates
Moved sig_reader to lpp.lpp_sim_pkg.
Moved sig_reader to lpp.lpp_sim_pkg.

File last commit:

r642:d1feb5a41a44 default
r643:a691a9e23336 default
Show More
make_signals.ipynb
60 lines | 1.1 KiB | text/plain | TextLexer
In [8]:
import numpy as np
import matplotlib.pyplot as plt
import random
In [32]:
W,H=8,1000
test = np.ones((H,W))*[(random.random()*65535)-32768 for col in range(W)]
np.savetxt("input.txt", test,fmt="%d", delimiter=" ")