下载此文档

实验四线性时不变离散时间系统的频域分析.doc


文档分类:通信/电子 | 页数:约23页 举报非法文档有奖
1/23
下载提示
  • 1.该资料是网友上传的,本站提供全文预览,预览什么样,下载就什么样。
  • 2.下载该文档所得收入归上传者、原创者。
  • 3.下载的文档,不会出现我们的网址水印。
1/23 下载此文档
文档列表 文档介绍
Name:Chen yifan 20112121006
Section:
Laboratory Exercise 4
LINEAR, TIME-INVARIANT DISCRETE-TIME SYSTEMS: FREQUENCY-DOMAIN REPRESENTATIONS
TRANSFER FUNCTION AND FREQUENCY RESPONSE
Project Transfer Function Analysis
Answers:
The modified Program P3_1 pute and plot the magnitude and phase spectra of a moving average filter of Eq. () for 0 w 2p is shown below:
< Insert program code here. Copy from m-file(s) and paste. >
w=0:pi/511:2*pi;
M=input('M= ');
num=ones(1,M)/M;
h=freqz(num,1,w);
subplot(2,1,1);
plot(w/pi,abs(h));grid;
title('H(e^{j\omega})幅度谱');
xlabel('\omega/\pi');ylabel('振幅');
subplot(2,1,2);
plot(w/pi,angle(h));grid;
title('相位谱 H(e^{j\omega})');
xlabel('\omega/\pi');ylabel('以弧度为单位的相位');
This program was run for the following three different values of M and the plots of the corresponding frequency responses are shown below:
< Insert MATLAB figure(s) here. Copy from figure window(s) and paste. >
The types of symmetries exhibited by the magnitude and phase spectra are due to -
The type of filter represented by the moving average filter is
M=3
-
M=10;
M=20;
The results of Question can now be explained as follows - By the graph, you can see that it represents a low-pass filter.
The plot of the frequency response of the causal LTI discrete-time system of Question obtained using the modified program is given below:
< Insert MATLAB figure(s) here. Copy from figure window(s) and paste. >
w=0:pi/511:pi;
num=[ 0 -];
den=[1 - ];
h=freqz(num,den,w);
subplot(2,1,1);
plot(w/pi,abs(h));grid;
title('H(e^{j\omega})幅度谱');
xlabel('\omega/\pi');ylabel('振幅');
subplot(2,1,2);
plot(w/pi,angle(h));grid;
title('相位谱 H(e^{j\omega})');
xlabel('\omega/\pi');
ylabel('以弧度为单位的相位');
The type of filter represented by this transfer function is - It says bandpass filter is obtained by diagrams can be BPF
The plot of the frequency response of the causal LTI discrete-time system of Question Q4

实验四线性时不变离散时间系统的频域分析 来自淘豆网www.taodocs.com转载请标明出处.

相关文档 更多>>
非法内容举报中心
文档信息
  • 页数23
  • 收藏数0 收藏
  • 顶次数0
  • 上传人q2299971
  • 文件大小159 KB
  • 时间2017-08-24