import matplotlib.pyplot as plt
from numpy import arange
from sk_dsp_comm.sigsys import dstep
n = arange(-5,5)
x = dstep(n)
plt.stem(n,x)
plt.show()
#
# Shift the delta left by 2.
#
x = dstep(n+2)
plt.stem(n,x)
