# Ten samples per symbol and :math:`\alpha = 0.35`.
#
import matplotlib.pyplot as plt
from sk_dsp_comm.digitalcom import rc_imp
from numpy import arange
b = rc_imp(10,0.35)
n = arange(-10*6,10*6+1)
plt.stem(n,b)
plt.show()
