- 1、本文档共41页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
武汉大学数字信号实验三武汉大学数字信号实验三
姓名:全权 学号:2013302530120 班级:信安四班 日期:5月8日
实验3离散时间系统-频域分析
实验内容:
3.1 DISCRETE-TIME FOURIER TRANSFORM(离散时间傅立叶变换)
Project 3.1 DTFT Computation
A copy of Program P3_1 is given below:
% Program P3_1
% Evaluation of the DTFT
clf;
% Compute the frequency samples of the DTFT
w = -4*pi:8*pi/511:4*pi;
num = [2 1];den = [1 -0.6];
h = freqz(num, den, w);
% Plot the DTFT
subplot(2,1,1)
plot(w/pi,real(h));grid
title(Real part of H(e^{j\omega}))
xlabel(\omega /\pi);
ylabel(Amplitude);
subplot(2,1,2)
plot(w/pi,imag(h));grid
title(Imaginary part of H(e^{j\omega}))
xlabel(\omega /\pi);
ylabel(Amplitude);
pause
subplot(2,1,1)
plot(w/pi,abs(h));grid
title(Magnitude Spectrum |H(e^{j\omega})|)
xlabel(\omega /\pi);
ylabel(Amplitude);
subplot(2,1,2)
plot(w/pi,angle(h));grid
title(Phase Spectrum arg[H(e^{j\omega})])
xlabel(\omega /\pi);
ylabel(Phase in radians);
Insert program code here. Copy from m-file(s) and paste.
Answers:
Q3.1 The expression of the DTFT being evaluated in Program P3_1 is -
The function of the pause command is - 暂停程序执行
Q3.2 The plots generated by running Program P3_1 are shown below:
Insert MATLAB figure(s) here. Copy from figure window(s) and paste.
The DTFT is a 周期性 function of ?.
Its period(周期) is -____2π______
The types of symmetries(对称性) exhibited by the four plots are as follows:
实部周期为2π且对称,虚部周期为2π且为奇函数,幅度为2π且为偶函数,相位为2π且为奇函数
(指导说明:P3_1原始程序中的参数确定的系统函数为:
,
通过调整变量num,den,w观察频率响应的变化)
Q3.3 The required modifications to Program P3_1 to evaluate the given DTFT of Q3.3 are given below:
N=512;
num = [0.7 -0.5 0.3 1];
den = [1 0.3 -0.5 0.7];
[h,w] = freqz(num,den,N);
% Plot the DTFT subplot(2,1,1)
plot(w/pi,real(h));grid
title(Real part of H(e^{j\omega}));xlabel(\omega /\pi);ylabel(Amplitude);subplot(2,1,2)
plot(w/pi,imag(h));grid
title(Imaginary part of H(e^{j\omega}));xlabel(\omega /\pi);ylabel(Amplitude);pause
subplot(2,1,1)
plot(w/pi,abs(h));grid
title(Magnitude Spectrum |H(e^{j\omega})|);xlabel(\omega /\pi);ylabel(Amplitude);subpl
文档评论(0)