import matplotlib.pyplot as plt
from numpy import arange
from sk_dsp_comm.digitalcom import RZ_bits
x,b,data = RZ_bits(100,10)
t = arange(len(x))
plt.plot(t,x)
plt.ylim([-0.01, 1.01])
plt.show()
