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