Recall that the unit sample signal Δ is defined as:
Could not parse math:\delta[n] = \cases{ 1 & if $n=0$\cr 0 & \text{otherwise} }
and that the unit step signal U is defined as:
Could not parse math:u[n] = \cases{ 1 & if $n\geq 0$\cr 0 & \text{otherwise} }
The unit sample response of a system is the output of that system
when its input is the unit sample signal Δ, and the
unit step response of a system is the output of that system
when its input is the unit step signal U
Relationship
Before moving on, note the following relationships:
Δ=(1−R)U
U=Δ+RU
Check Yourself 1:
Prove to yourself that these equations are correct.
Check Yourself 2:
If we knew a system's unit sample response HΔ, how could we use
the above equation to determine the system's unit step response HU?
Hint: what happens when you apply H to both sides of the equations above? Can you arrange them to solve for one response in terms of the other?
Part 1
Consider a system with a unit _sample_ response $h[n]$:
h[n]=⎩⎨⎧00.5−0.5n≤0n>0,andnevenn>0,andnodd
This response is depicted below:
Determine the first six values of this system's unit step response s[n]
Enter a Python list of length 6 below, representing
[s[0],s[1],s[2],s[3],s[4],s[5]].
First 6 samples of unit step response:
Part 2
Consider a system with a unit _step_ response $s[n]$:
s[n]=⎩⎨⎧013n<0n=0n>0
This response is depicted below:
Determine the first six values of this system's unit sample response h[n].
Enter a Python list of length 6 below, representing
[h[0],h[1],h[2],h[3],h[4],h[5]].