Exercises
3.7. Exercises#
Exercise 3.1
For each of the following systems, what is its impulse response?
Exercise 3.2
If
Full
Valid
Same (centered)
Exercise 3.3
For each of the following systems, determine whether it is linear, shift-invariant, both, or neither.
Exercise 3.4
Let
Using an input recording
How does each
# Starter code for making a moving average filter
K = 8
h_K = 1/K * np.ones(K)