Question

BC:9.4 A LTI discrete time system has an impulse response h[n] = (−0.6)nu[n] + (0.95)nu[n − 1] Find the transfer function, Hˆ (e jωˆ ), in the normalized frequency domain. Use Matlab to plot the magnitude and phase (in degrees) of Hˆ (e jωˆ ) in the range of −π ≤ ωˆ ≤ π. Attach your Matlab source code with the plots.BC:9.4 A LTI discrete time system has an impulse response h[n] = (-0.6)u[n] + (0.95)u[n-1] Find the transfer function, H(e^

0 0
Add a comment Improve this question Transcribed image text
Answer #1

0-as 2+0-6 0a5 12W jw 32w iade & Phase

MATLAB code:

clc;
close all;
clear all;

% define w from -pi to pi
w = -pi:0.01:pi;

% define the transfer function
H = (1+0.57*exp(-2j*w))./(1-0.35*exp(-1j*w)-0.57*exp(-2j*w));

% now plot the magnitude and phase spectra as below
figure;
subplot(211);
plot(w/pi,20*log10(abs(H)));grid on; xlabel('normalized w = wn = w/pi');
ylabel('Magnitude in dB');
subplot(212);
plot(w/pi,angle(H)*57.3);grid on; xlabel('normalized w = wn = w/pi');
ylabel('Degrees');

20 드 10 -10 20 1 0.8 -0.6 0.4 -0.200.2 0.4 0.6 0.8 1 normalized w = wn = w/pi 100 50 -50 -100 1 0.8 0.6 0.4 0.2 00. 0.4 0.6 0

Add a comment
Know the answer?
Add Answer to:
BC:9.4 A LTI discrete time system has an impulse response h[n] = (−0.6)nu[n] + (0.95)nu[n −...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT