Impact-Site-Verification: dbe48ff9-4514-40fe-8cc0-70131430799e

Search This Blog

Discrete Time Fourier Transform in MATLAB|Part 2

CODE:

w=0:0.01:2*pi;
a=[1];
b=[1 -0.8];
h=freqz(a,b,w);
subplot(2,1,1);
plot(w/pi,abs(h));
ylabel('Magnitude');
subplot(2,1,2);
plot(w/pi,angle(h));
ylabel('Phase');


No comments

Popular Posts