import numpy as np
import matplotlib.pyplot as plt
from sk_dsp_comm import sigsys as ss
n = np.arange(-5,8)
x = ss.ex6_2(n)
plt.stem(n,x) # creates a stem plot of x vs n
