Question 3.22: Filtering Perspective of the Zero-State Response Use the MAT......

Filtering Perspective of the Zero-State Response

Use the MATLAB filter command to compute and sketch the zero-state response for the system described by \left(E^2+0.5 E-1\right) y[n]=\left(2 E^2+6 E\right) x[n] and the input x[n]=4^{-n} u[n] .

Step-by-Step
The 'Blue Check Mark' means that this solution was answered by an expert.
Learn more on how do we answer questions.

We solve this problem using the same approach as Ex. 3.19. Although the input is bounded and quickly decays to zero, the system itself is unstable and an unbounded output results.

The 'Blue Check Mark' means that either the MATLAB code/script/answer provided in the answer section has been tested by our team of experts; or the answer in general has be fact checked.

Learn more on how do we answer questions.

Script File

>> n = (0:11); x = @(n) 4.^(-n).*(n>=0);
>> a = [1 0.5 -1]; b = [2 6 0]; y = filter(b,a,x(n));
>> clf; stem(n,y,’k’); xlabel(’n’); ylabel(’y[n]’); axis([-0.5 11.5 -20 25]);

3.22

Related Answered Questions

Question: 3.19

Verified Answer:

There are several ways to find the impulse respons...
Question: 3.5

Verified Answer:

We represent the desired sinusoid using an anonymo...